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, 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()