The '--file' option for 'new' should show 'FILE' rather than 'MESSAGE'
authorCatalin Marinas <catalin.marinas@gmail.com>
Mon, 19 Oct 2009 16:14:50 +0000 (17:14 +0100)
committerCatalin Marinas <catalin.marinas@gmail.com>
Mon, 19 Oct 2009 16:14:50 +0000 (17:14 +0100)
The patch sets a metavar for this option's definition.

Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
stgit/argparse.py

index db008d0..baf278b 100644 (file)
@@ -161,6 +161,7 @@ def message_options(save_template):
             short = 'Use MESSAGE instead of invoking the editor'),
         opt('-f', '--file', action = 'callback', callback = file_callback,
             dest = 'message', type = 'string', args = [files],
+            metavar = 'FILE',
             short = 'Use FILE instead of invoking the editor', long = """
             Use the contents of FILE instead of invoking the editor.
             (If FILE is "-", write to stdout.)""")]