[svn r92] Argh, though I could get away with a last-minute pre-commit change but typo'd it. Never again\!

This commit is contained in:
which.linden
2008-02-19 01:15:19 -05:00
parent 91961b0250
commit 1c25f1c91a

View File

@@ -54,7 +54,7 @@ class Timer(object):
cb, args, kw = getattr(self, 'tpl', (None, None, None)) cb, args, kw = getattr(self, 'tpl', (None, None, None))
retval = "Timer(%s, %s, *%s, **%s)" % ( retval = "Timer(%s, %s, *%s, **%s)" % (
secs, cb, args, kw) secs, cb, args, kw)
if _g_debug and hasattr(self, 'traceback': if _g_debug and hasattr(self, 'traceback'):
retval += '\n' + self.traceback.getvalue() retval += '\n' + self.traceback.getvalue()
return retval return retval