From 6799106333ea6279f64f64c8e71b3b947a52e7bb Mon Sep 17 00:00:00 2001 From: Duarte Cordeiro Date: Mon, 15 Sep 2014 14:50:19 +0100 Subject: [PATCH] Fixes issue #579 --- src/commands/default/comms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/comms.py b/src/commands/default/comms.py index 3c4a8f6e2c..b4c5979db5 100644 --- a/src/commands/default/comms.py +++ b/src/commands/default/comms.py @@ -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: