Skip to content

Commit 738cea9

Browse files
committed
small tweaks to --help for hacking/test-module
1 parent fc96b88 commit 738cea9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hacking/test-module

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ def parse():
4747
:return : (options, args)"""
4848
parser = optparse.OptionParser()
4949

50-
parser.usage = "%prog [options] (-h for help)"
50+
parser.usage = "%prog -[options] (-h for help)"
5151

5252
parser.add_option('-m', '--module-path', dest='module_path',
53-
help="path of module to execute")
53+
help="REQUIRED: full path of module source to execute")
5454
parser.add_option('-a', '--args', dest='module_args', default="",
55-
help="module arguments")
55+
help="module argument string")
5656
parser.add_option('-D', '--debugger', dest='debugger',
5757
help="path to python debugger (e.g. /usr/bin/pdb)")
5858
options, args = parser.parse_args()

0 commit comments

Comments
 (0)