diff options
author | Luke Macken <lmacken@redhat.com> | 2008-01-14 17:14:23 -0500 |
---|---|---|
committer | Luke Macken <lmacken@redhat.com> | 2008-01-14 17:14:23 -0500 |
commit | c4371ce647118902dd7574394d86c690c9be686e (patch) | |
tree | 9d702b220948fb4796cf1e253950fa486fce1eea /func/overlord/cmd_modules/call.py | |
parent | 74e9bf9f3319da3c78e2718a8122e5edf8879638 (diff) | |
download | func-c4371ce647118902dd7574394d86c690c9be686e.tar.gz func-c4371ce647118902dd7574394d86c690c9be686e.tar.xz func-c4371ce647118902dd7574394d86c690c9be686e.zip |
Our client.command.Command class looks for 'usage', not 'useage'
Diffstat (limited to 'func/overlord/cmd_modules/call.py')
-rw-r--r-- | func/overlord/cmd_modules/call.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/func/overlord/cmd_modules/call.py b/func/overlord/cmd_modules/call.py index 4828981..7add5bf 100644 --- a/func/overlord/cmd_modules/call.py +++ b/func/overlord/cmd_modules/call.py @@ -25,7 +25,7 @@ DEFAULT_FORKS = 1 class Call(client.command.Command): name = "call" - useage = "call nodule method name arg1 arg2..." + usage = "call module method name arg1 arg2..." def addOptions(self): self.parser.add_option("-v", "--verbose", dest="verbose", action="store_true") |