diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-27 22:49:52 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-27 22:49:52 +0000 |
commit | c091e0c16fb1dbcf5c2a3789c8960e5384a480c0 (patch) | |
tree | 1062ae42331f58a1a89cc20d7836910bfe0998d5 /src/user.py | |
parent | d6e3788305a6e0c68156b00a1ae5c0f4aee9aff7 (diff) | |
download | poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.gz poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.bz2 poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.xz poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.zip |
Command mode in roster tab, toggle offline contacts with 'o' and sort contacts by show
Diffstat (limited to 'src/user.py')
-rw-r--r-- | src/user.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/user.py b/src/user.py index 1ed2a9f1..b2b8790c 100644 --- a/src/user.py +++ b/src/user.py @@ -31,7 +31,6 @@ class User(object): keep trace of an user in a Room """ def __init__(self, nick, affiliation, show, status, role): - from common import debug self.last_talked = datetime(1, 1, 1) # The oldest possible time self.update(affiliation, show, status, role) self.change_nick(nick) |