Fixes issue #579

This commit is contained in:
Duarte Cordeiro 2014-09-15 14:50:19 +01:00
parent 8ba1509559
commit 6799106333

View file

@ -229,7 +229,7 @@ class CmdAllCom(MuxPlayerCommand):
string += "No channels."
for channel in channels:
string += "\n{w%s:{n\n" % channel.key
subs = channel.subscriptions.all()
subs = channel.db_subscriptions.all()
if subs:
string += " " + ", ".join([player.key for player in subs])
else: