Edited the help-category of utility commands to make wiki auto-command-help match.

This commit is contained in:
Griatch 2011-03-03 16:50:27 +00:00
parent 38014eda3c
commit cd1c415711

View file

@ -28,7 +28,7 @@ class CmdTest(MuxCommand):
key = "@test" key = "@test"
aliases = ["@te", "@test all"] aliases = ["@te", "@test all"]
help_category = "Testing" help_category = "Utils"
permissions = "cmd:Immortals" #Wizards permissions = "cmd:Immortals" #Wizards
# the muxcommand class itself handles the display # the muxcommand class itself handles the display
@ -82,7 +82,7 @@ class CmdTestPerms(MuxCommand):
""" """
key = "@testperm" key = "@testperm"
permissions = "cmd:Immortals Wizards" permissions = "cmd:Immortals Wizards"
help_category = "Testing" help_category = "Utils"
def func(self): def func(self):
""" """
Run tests Run tests
@ -196,7 +196,7 @@ class TestCom(MuxCommand):
""" """
key = "@testcom" key = "@testcom"
permissions = "cmd:Immortals Wizards" permissions = "cmd:Immortals Wizards"
help_category = "Testing" help_category = "Utils"
def func(self): def func(self):
"Run the test program" "Run the test program"
caller = self.caller caller = self.caller