diff options
author | LaMont Jones <lamontjones@google.com> | 2021-11-03 20:48:27 +0000 |
---|---|---|
committer | LaMont Jones <lamontjones@google.com> | 2021-11-05 16:59:14 +0000 |
commit | 7b9b251a5e86eed8d346ffe84dc22b8f1cb1a05b (patch) | |
tree | f5daaac3d5d5a1a6279fbb3d922ba8df1a88c588 /project.py | |
parent | 6251729cb43554dc5f63b80e96bcbce0ad688b40 (diff) | |
download | git-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'] |