diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-11 03:39:39 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-11 03:39:39 +0000 |
commit | 58a82f170b01994be304283b2b195ea010b561e6 (patch) | |
tree | 97b3e00431ab1617c24607023f5f7634f2c7e44c /src/user.py | |
parent | f729e79aade7a1c1e2978dcf3822647351d58204 (diff) | |
download | poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.gz poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.bz2 poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.xz poezio-58a82f170b01994be304283b2b195ea010b561e6.zip |
fix some issues with recent-words completion, make the ConversationTabs closable with /unquery and ignore the keyboard shortcuts not handled. fixed #1941
Diffstat (limited to 'src/user.py')
-rw-r--r-- | src/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user.py b/src/user.py index b2b8790c..eb8587f8 100644 --- a/src/user.py +++ b/src/user.py @@ -64,7 +64,7 @@ class User(object): return True def __repr__(self): - return ">%s<" % (self.nick.decode('utf-8')) + return ">%s<" % (self.nick) def __eq__(self, b): return self.role == b.role and self.nick.lower() == b.nick.lower() |