remove __format__ from Client (blocks using .format())

This commit is contained in:
Thor77 2015-07-31 22:15:19 +02:00
parent 63d3f69c3c
commit 5ea493329d
1 changed files with 0 additions and 3 deletions

View File

@ -115,9 +115,6 @@ class Client:
def __str__(self):
return '<{},{}>'.format(self.identifier, self.nick)
def __format__(self):
return self.__str__()
def __getitem__(self, item):
return {
'identifier': self.identifier,