aboutsummaryrefslogtreecommitdiff
path: root/git-p4.py
diff options
context:
space:
mode:
authorLuke Diamand <luke@diamand.org>2012-05-11 07:25:17 +0100
committerJunio C Hamano <gitster@pobox.com>2012-05-11 14:21:38 -0700
commit05a3cec501e2a602ddb4333eec1e70219f0a8f53 (patch)
tree6deadfec9281c93c8ccce3c021b6be536a46c242 /git-p4.py
parente71f6a53e269ffc9c8acd4d4eb563ea230f3e8de (diff)
downloadgit-05a3cec501e2a602ddb4333eec1e70219f0a8f53.tar.gz
git-05a3cec501e2a602ddb4333eec1e70219f0a8f53.tar.xz
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-xgit-p4.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-p4.py b/git-p4.py
index eab69590c..1335e0b89 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -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