Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Diamand <luke@diamand.org>2012-05-11 10:25:17 +0400
committerJunio C Hamano <gitster@pobox.com>2012-05-12 01:21:38 +0400
commit05a3cec501e2a602ddb4333eec1e70219f0a8f53 (patch)
tree6deadfec9281c93c8ccce3c021b6be536a46c242 /git-p4.py
parente71f6a53e269ffc9c8acd4d4eb563ea230f3e8de (diff)
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 eab69590c4..1335e0b890 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