summaryrefslogtreecommitdiff
path: root/hacking/test-module
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-07-23 19:33:26 -0400
committerMichael DeHaan <michael.dehaan@gmail.com>2012-07-23 19:33:26 -0400
commit738cea9c93d22999a5e7949f8c05271185ecad20 (patch)
tree111d287fc24cbcb1e5d70df3021f334a03778718 /hacking/test-module
parentfc96b88205964c63d728575a0bc34a97bf6bf470 (diff)
downloadansible-738cea9c93d22999a5e7949f8c05271185ecad20.tar.gz
small tweaks to --help for hacking/test-module
Diffstat (limited to 'hacking/test-module')
-rwxr-xr-xhacking/test-module6
1 files changed, 3 insertions, 3 deletions
diff --git a/hacking/test-module b/hacking/test-module
index ce6aeb7894..6840dcffc7 100755
--- a/hacking/test-module
+++ b/hacking/test-module
@@ -47,12 +47,12 @@ def parse():
:return : (options, args)"""
parser = optparse.OptionParser()
- parser.usage = "%prog [options] (-h for help)"
+ parser.usage = "%prog -[options] (-h for help)"
parser.add_option('-m', '--module-path', dest='module_path',
- help="path of module to execute")
+ help="REQUIRED: full path of module source to execute")
parser.add_option('-a', '--args', dest='module_args', default="",
- help="module arguments")
+ help="module argument string")
parser.add_option('-D', '--debugger', dest='debugger',
help="path to python debugger (e.g. /usr/bin/pdb)")
options, args = parser.parse_args()