summaryrefslogtreecommitdiff
path: root/src/user.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-26 18:01:38 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-26 18:01:38 +0000
commit390e952829dfbf9bed2cf4647e07ab9249d59cf2 (patch)
tree4c8c14d909286791a213e66f929bc619fab98f69 /src/user.py
parentc486b78bbd072b5d924a62f0b2c4a40f644dfce5 (diff)
downloadpoezio-390e952829dfbf9bed2cf4647e07ab9249d59cf2.tar.gz
poezio-390e952829dfbf9bed2cf4647e07ab9249d59cf2.tar.bz2
poezio-390e952829dfbf9bed2cf4647e07ab9249d59cf2.tar.xz
poezio-390e952829dfbf9bed2cf4647e07ab9249d59cf2.zip
Basic implementation of the roster and one to one conversations
Diffstat (limited to 'src/user.py')
-rw-r--r--src/user.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/user.py b/src/user.py
index 252764ae..8ddf47fc 100644
--- a/src/user.py
+++ b/src/user.py
@@ -32,7 +32,6 @@ class User(object):
"""
def __init__(self, nick, affiliation, show, status, role):
from common import debug
- debug('NEW USER: nick:%s, affiliation:%s, show:%s, status:%s, role:%s\n' % (nick, affiliation, show, status, role))
self.last_talked = datetime(1, 1, 1) # The oldest possible time
self.update(affiliation, show, status, role)
self.change_nick(nick)