Description: fix print usage in python3 example
 In python3 the print statement is used with parentheses. This fixes
 installation of the python 3 package.
Author: Daniel Holbach <daniel.holbach@ubuntu.com>
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1052331
Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=684271
Last-Update: 2012-09-18

--- pyatspi-2.5.92+dfsg.orig/examples/magFocusTracker.py
+++ pyatspi-2.5.92+dfsg/examples/magFocusTracker.py
@@ -282,7 +282,7 @@ def main():
             startTracking()
         pyatspi.Registry.start()
     else:
-        print 'Magnification service not available. Exiting.'
+        print('Magnification service not available. Exiting.')
 
     return 0
 
