diff options
author | Luke Diamand <luke@diamand.org> | 2012-05-11 07:25:17 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-11 14:21:38 -0700 |
commit | 05a3cec501e2a602ddb4333eec1e70219f0a8f53 (patch) | |
tree | 6deadfec9281c93c8ccce3c021b6be536a46c242 /git-p4.py | |
parent | e71f6a53e269ffc9c8acd4d4eb563ea230f3e8de (diff) | |
download | git-05a3cec501e2a602ddb4333eec1e70219f0a8f53.tar.gz |
git p4: fix bug when verbose enabled with tag export
Wrong variable name used when verbose enabled, causes failure.
Signed-off-by: Luke Diamand <luke@diamand.org>
Acked-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1257,7 +1257,7 @@ class P4Submit(Command, P4UserMap): if not m.match(name): if verbose: - print "tag %s does not match regexp %s" % (name, validTagRegexp) + print "tag %s does not match regexp %s" % (name, validLabelRegexp) continue # Get the p4 commit this corresponds to |