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:
authorMoritz Baumann <moritz.baumann@sap.com>2022-07-20 21:55:29 +0300
committerJunio C Hamano <gitster@pobox.com>2022-07-20 23:53:52 +0300
commitc0d2b07460ab9e42ac398316544ed3eb43f9a998 (patch)
tree36a759941731d002be9e45d242ce08496c29be7d /git-p4.py
parente72d93e88cb20b06e88e6e7d81bd1dc4effe453f (diff)
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 8fbf6eb1fe..1de3d6f1cd 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