Fixed bug in printf

This commit is contained in:
Jeremy Fincher 2003-04-04 06:08:57 +00:00
parent 46eb87808f
commit ea787b8441

View File

@ -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))