summary refs log tree commit diff
path: root/gtkui.py
diff options
context:
space:
mode:
authorClayton G. Hobbs <clay@lakeserv.net>2015-12-27 00:17:36 -0500
committerClayton G. Hobbs <clay@lakeserv.net>2015-12-27 00:17:36 -0500
commit980c6c4c0554faa7162373a0b6caf8c495f212bd (patch)
tree7f8a5a1ad91d64fef4cdbe65d7ad59aa532a3316 /gtkui.py
parent2099a52933697b336dbd8f4201441a875444084c (diff)
Work towards Python 3 support
Diffstat (limited to 'gtkui.py')
-rw-r--r--gtkui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtkui.py b/gtkui.py
index 7c3600d..db5174a 100644
--- a/gtkui.py
+++ b/gtkui.py
@@ -13,7 +13,7 @@ class UI(GObject.GObject):
         'command' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, (GObject.TYPE_STRING,))
     }
 
-    def __init__(self,args, continuous):
+    def __init__(self, args, continuous):
         GObject.GObject.__init__(self)
         self.continuous = continuous
         # Make a window
@@ -33,8 +33,8 @@ class UI(GObject.GObject):
         layout.add(self.ccheckbox)
 
         # Connect the buttons
-        self.lsbutton.connect("clicked",self.lsbutton_clicked)
-        self.ccheckbox.connect("clicked",self.ccheckbox_clicked)
+        self.lsbutton.connect("clicked", self.lsbutton_clicked)
+        self.ccheckbox.connect("clicked", self.ccheckbox_clicked)
 
         # Add a label to the UI to display the last command
         self.label = Gtk.Label()