OSDN Git Service

fix verbose_out type
authort.moriyama <t.moriyama@users.sourceforge.jp>
Sun, 14 Jul 2013 18:54:40 +0000 (03:54 +0900)
committert.moriyama <t.moriyama@users.sourceforge.jp>
Sun, 14 Jul 2013 18:54:40 +0000 (03:54 +0900)
linkpair/utils/common.py

index ae10cc8..111fdfc 100755 (executable)
@@ -24,7 +24,7 @@ class CommonUtils(object):
 
     def verbose_out(self, msg):
         if hasattr(self, '_opts') and self._opts.verbose is True:
-            printr("[verbose]: " + msg, file=sys.stderr)
+            print("[verbose]: " + msg, file=sys.stderr)
 
     def debug_out(self, msg):
         if hasattr(self, '_opts') and self._opts.debug is True: