From a892f43759fe75137cfdf5af10da32f41477a553 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 13 Jul 2007 23:43:55 +0100 Subject: [PATCH] Disallow non-patch args to "stg show" (gna #8453). Organization: Straylight/Edgeware From: Yann Dirson Git-core refs and patch@branch args were not allowed in the multiple-argument form of "stg show". For consistency we completely disallow them: git-core refs are available from git-show, and "stg show patch@branch" as "stg show patch -b branch". Signed-off-by: Yann Dirson --- stgit/commands/show.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/stgit/commands/show.py b/stgit/commands/show.py index c59ac68..3bf4f20 100644 --- a/stgit/commands/show.py +++ b/stgit/commands/show.py @@ -55,12 +55,7 @@ def func(parser, options, args): elif len(args) == 0: patches = ['HEAD'] else: - if len(args) == 1 and args[0].find('..') == -1 \ - and not crt_series.patch_exists(args[0]): - # it might be just a commit id - patches = args - else: - patches = parse_patches(args, applied + unapplied, len(applied)) + patches = parse_patches(args, applied + unapplied, len(applied)) if options.diff_opts: diff_flags = options.diff_opts.split() -- [mdw]