summaryrefslogtreecommitdiff
path: root/src/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/user.py')
-rw-r--r--src/user.py2
1 files changed, 0 insertions, 2 deletions
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