]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
checkkconfigsymbols.py: support git's "^" syntax
authorValentin Rothberg <valentinrothberg@gmail.com>
Thu, 27 Oct 2016 12:34:57 +0000 (14:34 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Oct 2016 12:12:14 +0000 (08:12 -0400)
Support git's "^" syntax for diffing two commits, for instance via
"--diff HEAD^^^..HEAD".

Signed-off-by: Michael Ellermann <mpe@ellerman.id.au>
Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/checkkconfigsymbols.py

index a32e4da4c11708dbbffd97a1467ff978b336ddd0..3820f00b066a73f6ab23e68b869a2f42e46c4e89 100755 (executable)
@@ -88,7 +88,7 @@ def parse_options():
     if args.commit and args.diff:
         sys.exit("Please specify only one option at once.")
 
-    if args.diff and not re.match(r"^[\w\-\.]+\.\.[\w\-\.]+$", args.diff):
+    if args.diff and not re.match(r"^[\w\-\.\^]+\.\.[\w\-\.\^]+$", args.diff):
         sys.exit("Please specify valid input in the following format: "
                  "\'commit1..commit2\'")