From c32f90cfb0ec131eded7cf7da7568e3853a1b265 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 26 Jun 2008 17:03:55 -0400 Subject: add a "summary" to the cmd_module classes so the help can get to them. make "func help" work again. Sorta. It's better, but it's still not right. At least it doesnt traceback now. remove a spurious debug statement in the command parser --- func/overlord/cmd_modules/call.py | 1 + 1 file changed, 1 insertion(+) (limited to 'func/overlord/cmd_modules/call.py') diff --git a/func/overlord/cmd_modules/call.py b/func/overlord/cmd_modules/call.py index 4615dd5..18af3a6 100644 --- a/func/overlord/cmd_modules/call.py +++ b/func/overlord/cmd_modules/call.py @@ -28,6 +28,7 @@ DEFAULT_FORKS = 1 class Call(base_command.BaseCommand): name = "call" usage = "call module method name arg1 arg2..." + summary = "allows a specific module and method to be called" def addOptions(self): self.parser.add_option("-v", "--verbose", dest="verbose", action="store_true") -- cgit