From bc4690b60a31742503230ff680223d95c1db61b0 Mon Sep 17 00:00:00 2001 From: daid303 Date: Mon, 10 Jun 2013 09:45:40 +0200 Subject: [PATCH] Remove some debug prints. --- Cura/gui/pluginPanel.py | 2 -- Cura/util/profile.py | 3 --- 2 files changed, 5 deletions(-) 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 = [] -- 2.30.2