From 71d4c9f989f6542d4f2dd60dd00f7fd7acffc329 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Fri, 20 Jul 2018 15:58:35 +0200 Subject: [PATCH] helloworld: fix typo --- examples/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()