From: Yann Dirson Date: Mon, 16 Jul 2007 22:48:29 +0000 (+0100) Subject: Revert 'Disallow non-patch args to "stg show" (gna #8453).' X-Git-Tag: v0.14.3~184 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/abdaa9e518c43a43980a651d6c61af72da52b15e Revert 'Disallow non-patch args to "stg show" (gna #8453).' This patch has a lot of side-effects that will break people's expectations. There is much more that just this to do if we want to sanitize patch/commit/range addressing on the command-line, so that will wait till after 0.13. Signed-off-by: Yann Dirson --- diff --git a/stgit/commands/show.py b/stgit/commands/show.py index 2b22744..45ca253 100644 --- a/stgit/commands/show.py +++ b/stgit/commands/show.py @@ -55,7 +55,12 @@ def func(parser, options, args): elif len(args) == 0: patches = ['HEAD'] else: - patches = parse_patches(args, applied + unapplied +\ + 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 +\ crt_series.get_hidden(), len(applied)) if options.diff_opts: