summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-07-20 15:58:35 +0200
committerMathieu Duponchelle <mathieu@centricular.com>2018-07-20 15:58:35 +0200
commit71d4c9f989f6542d4f2dd60dd00f7fd7acffc329 (patch)
treedbe0af4e2f430cae9649d5c4ab632adb692527bd
parente9d615bf535f8398a24214ca4849adc6f1f85b17 (diff)
helloworld: fix typo
-rw-r--r--examples/helloworld.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloworld.py b/examples/helloworld.py
index 6f92269ad8..a5a270e8cd 100644
--- a/examples/helloworld.py
+++ b/examples/helloworld.py
@@ -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()