summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
authorLaMont Jones <lamontjones@google.com>2021-11-03 20:48:27 +0000
committerLaMont Jones <lamontjones@google.com>2021-11-05 16:59:14 +0000
commit7b9b251a5e86eed8d346ffe84dc22b8f1cb1a05b (patch)
treef5daaac3d5d5a1a6279fbb3d922ba8df1a88c588 /project.py
parent6251729cb43554dc5f63b80e96bcbce0ad688b40 (diff)
downloadgit-repo-7b9b251a5e86eed8d346ffe84dc22b8f1cb1a05b.tar.gz
project: fix format string in error message
BUG=None Change-Id: I0b195fd919c6db8cb3547e8d6f4c733f2bd4a535 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/322735 Tested-by: LaMont Jones <lamontjones@google.com> Reviewed-by: Xin Li <delphij@google.com>
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 5b26b64c..59221914 100644
--- a/project.py
+++ b/project.py
@@ -2440,7 +2440,7 @@ class Project(object):
2440 if quiet: 2440 if quiet:
2441 cmd.append('-q') 2441 cmd.append('-q')
2442 if GitCommand(self, cmd).Wait() != 0: 2442 if GitCommand(self, cmd).Wait() != 0:
2443 raise GitError('%s submodule update --init --recursive %s ' % self.name) 2443 raise GitError('%s submodule update --init --recursive ' % self.name)
2444 2444
2445 def _Rebase(self, upstream, onto=None): 2445 def _Rebase(self, upstream, onto=None):
2446 cmd = ['rebase'] 2446 cmd = ['rebase']