From ea787b8441f89be1744127086f9c9893881ba9e7 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 4 Apr 2003 06:08:57 +0000 Subject: [PATCH] Fixed bug in printf --- src/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.py b/src/debug.py index 573523e6e..811be19ac 100644 --- a/src/debug.py +++ b/src/debug.py @@ -173,7 +173,7 @@ def msg(s, priority='low'): def printf(msg): if printf: - print '*** %s' % (msg) + print '*** ' + str(msg) def methodNamePrintf(obj, methodName): printf('%s: %s' % (obj.__class__.__name__, methodName))