From: daid303 Date: Mon, 10 Jun 2013 07:45:40 +0000 (+0200) Subject: Remove some debug prints. X-Git-Tag: 13.06.2~21 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=bc4690b60a31742503230ff680223d95c1db61b0;p=cura.git Remove some debug prints. --- diff --git a/Cura/gui/pluginPanel.py b/Cura/gui/pluginPanel.py index abf89c71..83a50d68 100644 --- a/Cura/gui/pluginPanel.py +++ b/Cura/gui/pluginPanel.py @@ -59,7 +59,6 @@ class pluginPanel(wx.Panel): def updateProfileToControls(self): self.pluginConfig = profile.getPluginConfig() - print 'pluginPanel::updateProfileToControls', self.pluginConfig for p in self.panelList: p.Show(False) self.pluginEnabledPanel.GetSizer().Detach(p) @@ -122,7 +121,6 @@ class pluginPanel(wx.Panel): return True def OnSettingChange(self, e): - print 'pluginPanel::OnSettingChange' for panel in self.panelList: idx = self.panelList.index(panel) for k in panel.paramCtrls.keys(): diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 0fa25541..4362f630 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -787,9 +787,6 @@ def getPluginConfig(): def setPluginConfig(config): putProfileSetting('plugin_config', pickle.dumps(config)) - print 'setPluginConfig:', config - locationInfo = traceback.extract_tb(sys.exc_info()[2])[-1] - print "%s: '%s' @ %s:%s:%d" % (str(sys.exc_info()[0].__name__), str(sys.exc_info()[1]), os.path.basename(locationInfo[0]), locationInfo[2], locationInfo[1]) def getPluginBasePaths(): ret = []