Convert from "print ..." to "print(...)"
[hooke.git] / hooke / command.py
index 49fff930f3a83012b31d2586fe29af213e0422e3..be5a6773a3c396d0b51d6d0744b3c895f4e6e1cd 100644 (file)
@@ -291,4 +291,4 @@ class PrintQueue (NullQueue):
     def put(self, item, block=True, timeout=None):
         """Print `item` and then dump it into the void.
         """
-        print 'ITEM:\n%s' % item
+        print('ITEM:\n{}'.format(item))