From b1260eaab629521af7b592c229d3ac044e8eeb9f Mon Sep 17 00:00:00 2001 From: "t.moriyama" Date: Mon, 15 Jul 2013 03:54:40 +0900 Subject: [PATCH] fix verbose_out type --- linkpair/utils/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkpair/utils/common.py b/linkpair/utils/common.py index ae10cc8..111fdfc 100755 --- a/linkpair/utils/common.py +++ b/linkpair/utils/common.py @@ -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: -- 2.11.0