From 9acc143ac75c3084cca62f6fd73e2b3268f5310e 2012-04-14 21:42:28 From: Thomi Richards Date: 2012-04-14 21:42:28 Subject: [PATCH] Changed print to use the function syntax. --- diff --git a/docs/examples/lib/gui-gtk3.py b/docs/examples/lib/gui-gtk3.py index 6488925..2e27320 100644 --- a/docs/examples/lib/gui-gtk3.py +++ b/docs/examples/lib/gui-gtk3.py @@ -12,7 +12,7 @@ from gi.repository import Gtk def hello_world(wigdet, data=None): - print "Hello World" + print("Hello World") def delete_event(widget, event, data=None): return False