Browse Source

Fix Channel's __str__ method for DMs

pull/60/head
andrei 8 years ago
parent
commit
1e5b954ad1
  1. 2
      disco/types/channel.py

2
disco/types/channel.py

@ -139,7 +139,7 @@ class Channel(SlottedModel, Permissible):
self.attach(six.itervalues(self.overwrites), {'channel_id': self.id, 'channel': self}) self.attach(six.itervalues(self.overwrites), {'channel_id': self.id, 'channel': self})
def __str__(self): def __str__(self):
return u'#{}'.format(self.name) return u'#{}'.format(self.name) if self.name else unicode(self.id)
def __repr__(self): def __repr__(self):
return u'<Channel {} ({})>'.format(self.id, self) return u'<Channel {} ({})>'.format(self.id, self)

Loading…
Cancel
Save