Fixed an issue with a CmdClock not being a part of the __all__ module handle (this causes ev.py to fail to import it)

This commit is contained in:
Griatch 2013-10-18 15:09:03 +02:00
parent 213be7aec4
commit a1646ec596
2 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ from src.commands.default.muxcommand import MuxCommand, MuxPlayerCommand
# limit symbol import for API
__all__ = ("CmdAddCom", "CmdDelCom", "CmdAllCom",
"CmdChannels", "CmdCdestroy", "CmdCBoot", "CmdCemit",
"CmdCWho", "CmdChannelCreate", "CmdCset", "CmdCdesc",
"CmdCWho", "CmdChannelCreate", "CmdClock", "CmdCdesc",
"CmdPage", "CmdIRC2Chan", "CmdIMC2Chan", "CmdIMCInfo",
"CmdIMCTell", "CmdRSS2Chan")