From 9456f7fc35538f98414eeac8e11745672317692c Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sun, 13 Jun 2010 01:50:28 +0000 Subject: show only what has really changed, in the change-status-messages. fixed #1473 --- src/user.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/user.py') diff --git a/src/user.py b/src/user.py index 6dc87c73..6f0f3328 100644 --- a/src/user.py +++ b/src/user.py @@ -52,14 +52,10 @@ class User(object): Return True if the user talked since the last s seconds """ from common import debug - debug('anus===========\n') if self.last_talked is None: - debug('return False1\n') 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: - debug('return False2\n') return False - debug('return True') return True -- cgit v1.2.3