From: Catalin Marinas Date: Mon, 19 Oct 2009 16:14:50 +0000 (+0100) Subject: The '--file' option for 'new' should show 'FILE' rather than 'MESSAGE' X-Git-Tag: v0.15~2 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/9ba661f6f88125c177c2bfb33c2ad373adccdc98?hp=0258440fbcd089efd496f465931a64cb18a2e1ce The '--file' option for 'new' should show 'FILE' rather than 'MESSAGE' The patch sets a metavar for this option's definition. Signed-off-by: Catalin Marinas --- diff --git a/stgit/argparse.py b/stgit/argparse.py index db008d0..baf278b 100644 --- a/stgit/argparse.py +++ b/stgit/argparse.py @@ -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.)""")]