helloworld: fix typo
authorMathieu Duponchelle <mathieu@centricular.com>
Fri, 20 Jul 2018 13:58:35 +0000 (15:58 +0200)
committerMathieu Duponchelle <mathieu@centricular.com>
Fri, 20 Jul 2018 13:58:35 +0000 (15:58 +0200)
examples/helloworld.py

index 6f92269..a5a270e 100644 (file)
@@ -9,7 +9,7 @@ from gi.repository import GObject, Gst
 def bus_call(bus, message, loop):
     t = message.type
     if t == Gst.MessageType.EOS:
-        sys.stout.write("End-of-stream\n")
+        sys.stdout.write("End-of-stream\n")
         loop.quit()
     elif t == Gst.MessageType.ERROR:
         err, debug = message.parse_error()