diff --git a/disco/types/channel.py b/disco/types/channel.py index 2c01719..23d0b3c 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -139,7 +139,7 @@ class Channel(SlottedModel, Permissible): self.attach(six.itervalues(self.overwrites), {'channel_id': self.id, 'channel': self}) def __str__(self): - return u'#{}'.format(self.name) + return u'#{}'.format(self.name) if self.name else unicode(self.id) def __repr__(self): return u''.format(self.id, self)