summaryrefslogtreecommitdiff
path: root/git-p4.py
diff options
context:
space:
mode:
authorMoritz Baumann <moritz.baumann@sap.com>2022-07-20 18:55:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-07-20 20:53:52 (GMT)
commitc0d2b07460ab9e42ac398316544ed3eb43f9a998 (patch)
tree36a759941731d002be9e45d242ce08496c29be7d /git-p4.py
parente72d93e88cb20b06e88e6e7d81bd1dc4effe453f (diff)
downloadgit-c0d2b07460ab9e42ac398316544ed3eb43f9a998.zip
git-c0d2b07460ab9e42ac398316544ed3eb43f9a998.tar.gz
git-c0d2b07460ab9e42ac398316544ed3eb43f9a998.tar.bz2
git-p4: fix typo in P4Submit.applyCommit()
Signed-off-by: Moritz Baumann <moritz.baumann@sap.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 8fbf6eb..1de3d6f 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -2226,7 +2226,7 @@ class P4Submit(Command, P4UserMap):
raw=True):
if regexp.search(line):
if verbose:
- print("got keyword match on %s in %s in %s" % (regex.pattern, line, file))
+ print("got keyword match on %s in %s in %s" % (regexp.pattern, line, file))
kwfiles[file] = regexp
break