Add Client.__repr__

This commit is contained in:
Thor77 2017-08-23 20:42:28 +02:00
parent 3d6c41538b
commit 59d4c88701
1 changed files with 3 additions and 0 deletions

View File

@ -167,3 +167,6 @@ class Client(object):
def __str__(self):
return u'<{}, {}>'.format(self.identifier, self.nick)
def __repr__(self):
return self.__str__()