Skip to content

Commit 05a3cec

Browse files
luked99gitster
authored andcommitted
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>
1 parent e71f6a5 commit 05a3cec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

git-p4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ def exportGitTags(self, gitTags):
12571257

12581258
if not m.match(name):
12591259
if verbose:
1260-
print "tag %s does not match regexp %s" % (name, validTagRegexp)
1260+
print "tag %s does not match regexp %s" % (name, validLabelRegexp)
12611261
continue
12621262

12631263
# Get the p4 commit this corresponds to

0 commit comments

Comments
 (0)