Make sure channels() actually returns the channel list

This commit is contained in:
ekmartin 2015-11-07 20:33:13 +01:00
parent 4469b55d96
commit 14bc306214

View File

@ -81,7 +81,7 @@ class Group(object):
self.channel_backend.group_discard(self.name, channel)
def channels(self):
self.channel_backend.group_channels(self.name)
return self.channel_backend.group_channels(self.name)
def send(self, content):
if not isinstance(content, dict):