Browse Source

Removed print statements

pull/95/head
chriskiehl 9 years ago
parent
commit
a267454058
3 changed files with 0 additions and 4 deletions
  1. 1
      gooey/gui/application.py
  2. 2
      gooey/gui/windows/base_window.py
  3. 1
      gooey/gui/windows/footer.py

1
gooey/gui/application.py

@ -65,7 +65,6 @@ def do_run(args):
with open(gooey_config, 'r') as f:
build_spec = json.load(f)
print json.dumps(build_spec)
run(build_spec)

2
gooey/gui/windows/base_window.py

@ -87,8 +87,6 @@ class BaseWindow(wx.Frame):
def myListener(self, message):
print message
print message == 'fetch'
if message == 'fetch':
del self.config_panel

1
gooey/gui/windows/footer.py

@ -144,7 +144,6 @@ class Footer(AbstractFooter):
def __init__(self, parent, **kwargs):
AbstractFooter.__init__(self, parent, **kwargs)
for button in self.buttons:
print button.GetId()
self.Bind(wx.EVT_BUTTON, self.dispatch_click, button)
def dispatch_click(self, event):

Loading…
Cancel
Save