From a35866ba8d0ea2959133331f41ddfad8ef74e23f Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sun, 13 Jun 2010 16:01:38 +0000 Subject: code cleanup before 0.6 beta --- src/user.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/user.py') diff --git a/src/user.py b/src/user.py index 6f0f3328..8ec76ba4 100644 --- a/src/user.py +++ b/src/user.py @@ -51,11 +51,9 @@ class User(object): get a int Return True if the user talked since the last s seconds """ - from common import debug if self.last_talked is None: return False delta = timedelta(0, t) - debug("Last talk: %s\nDelai:%s\nDelta:%s\n" % (str(self.last_talked), str(t), str(delta))) if datetime.now() - delta > self.last_talked: return False return True -- cgit v1.2.3