From: Luke Diamand Date: Fri, 11 May 2012 06:25:17 +0000 (+0100) Subject: git p4: fix bug when verbose enabled with tag export X-Git-Tag: v1.7.11-rc0~26^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/05a3cec501e2a602ddb4333eec1e70219f0a8f53 git p4: fix bug when verbose enabled with tag export Wrong variable name used when verbose enabled, causes failure. Signed-off-by: Luke Diamand Acked-by: Pete Wyckoff Signed-off-by: Junio C Hamano --- 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 @@ def exportGitTags(self, gitTags): 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