From 99aa440fbf31341b5082b2dc67cc337ba2f5b24d Mon Sep 17 00:00:00 2001 From: Alexander Cherniuk Date: Fri, 6 Aug 2010 21:47:34 +0300 Subject: [PATCH] Unify the tuple notation style --- src/command_system/implementation/custom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/command_system/implementation/custom.py b/src/command_system/implementation/custom.py index 9e04cb6bc..cc33ae39c 100644 --- a/src/command_system/implementation/custom.py +++ b/src/command_system/implementation/custom.py @@ -76,7 +76,7 @@ class CustomChatCommands(CommandContainer): """ AUTOMATIC = True - HOSTS = (ChatCommands,) + HOSTS = ChatCommands, @command("squal", "bawl") def sing(self): @@ -99,7 +99,7 @@ class CustomPrivateChatCommands(CommandContainer): """ AUTOMATIC = True - HOSTS = (PrivateChatCommands,) + HOSTS = PrivateChatCommands, @command @doc(_("The same as using a doc-string, except it supports translation")) @@ -114,7 +114,7 @@ class CustomGroupChatCommands(CommandContainer): """ AUTOMATIC = True - HOSTS = (GroupChatCommands,) + HOSTS = GroupChatCommands, @command def fetch(self):