summaryrefslogtreecommitdiffstats
path: root/func/overlord/func_command.py
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-14 17:14:23 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-14 17:14:23 -0500
commitc4371ce647118902dd7574394d86c690c9be686e (patch)
tree9d702b220948fb4796cf1e253950fa486fce1eea /func/overlord/func_command.py
parent74e9bf9f3319da3c78e2718a8122e5edf8879638 (diff)
downloadthird_party-func-c4371ce647118902dd7574394d86c690c9be686e.tar.gz
third_party-func-c4371ce647118902dd7574394d86c690c9be686e.tar.xz
third_party-func-c4371ce647118902dd7574394d86c690c9be686e.zip
Our client.command.Command class looks for 'usage', not 'useage'
Diffstat (limited to 'func/overlord/func_command.py')
-rw-r--r--func/overlord/func_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/overlord/func_command.py b/func/overlord/func_command.py
index 76b4e95..09b324a 100644
--- a/func/overlord/func_command.py
+++ b/func/overlord/func_command.py
@@ -15,7 +15,7 @@ from func.overlord import client
class FuncCommandLine(command.Command):
name = "func"
- useage = "func is the commandline interface to a func minion"
+ usage = "func is the commandline interface to a func minion"
subCommandClasses = [call.Call, show.Show,
copyfile.CopyFile, listminions.ListMinions, ping.Ping]