Fixes for python3 + cleanups
[python-gstreamer-examples] / example2.py
index 1c8c17ec01abb5996cbee87040584dcf56fa2bb3..7edd1592c5731c36d39dd6bdea5d2c1b4c9be97c 100755 (executable)
@@ -14,12 +14,12 @@ import signal
 
 class Main:
     def __init__(self):
-        
+
         # Create gui bits and bobs
 
         self.wTree = Gtk.Builder()
         self.wTree.add_from_file("example2.glade")
-        
+
         signals = {
             "on_play_clicked" : self.OnPlay,
             "on_stop_clicked" : self.OnStop,
@@ -53,15 +53,15 @@ class Main:
 
 
     def OnPlay(self, widget):
-        print "play"
+        print("play")
         self.pipeline.set_state(Gst.State.PLAYING)
 
     def OnStop(self, widget):
-        print "stop"
+        print("stop")
         self.pipeline.set_state(Gst.State.READY)
-        
+
     def OnQuit(self, widget):
-        print "quit"
+        print("quit")
         Gtk.main_quit()
 
     # Workaround to get Ctrl+C to terminate from command line