summaryrefslogtreecommitdiff
path: root/src/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/user.py')
-rw-r--r--src/user.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/user.py b/src/user.py
index da403b51..82a50dda 100644
--- a/src/user.py
+++ b/src/user.py
@@ -57,3 +57,7 @@ class User(object):
if datetime.now() - delta > self.last_talked:
return False
return True
+
+ def __repr__(self):
+ return "<user.User object nick:%s show:%s(%s) status:%s affiliation:%s>"\
+ % (self.nick, self.show, type(self.show), self.status, self.affiliation)