From 738cea9c93d22999a5e7949f8c05271185ecad20 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 23 Jul 2012 19:33:26 -0400 Subject: [PATCH] small tweaks to --help for hacking/test-module --- hacking/test-module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hacking/test-module b/hacking/test-module index ce6aeb78946..6840dcffc7d 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()