From 1c25f1c91a0da97583a38f6855c4f579dbfdcb12 Mon Sep 17 00:00:00 2001 From: "which.linden" Date: Tue, 19 Feb 2008 01:15:19 -0500 Subject: [PATCH] [svn r92] Argh, though I could get away with a last-minute pre-commit change but typo'd it. Never again\! --- eventlet/timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlet/timer.py b/eventlet/timer.py index 94237ac..a91390a 100644 --- a/eventlet/timer.py +++ b/eventlet/timer.py @@ -54,7 +54,7 @@ class Timer(object): cb, args, kw = getattr(self, 'tpl', (None, None, None)) retval = "Timer(%s, %s, *%s, **%s)" % ( secs, cb, args, kw) - if _g_debug and hasattr(self, 'traceback': + if _g_debug and hasattr(self, 'traceback'): retval += '\n' + self.traceback.getvalue() return retval