Skip to content

Commit b262d0e

Browse files
Scott LeeLUCI
authored andcommitted
info: fix mismatched format args and wrong symbol name
Bug: 416589884 Change-Id: Icbaade585932f0cbb51367e07925ef606f089697 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/482762 Commit-Queue: Scott Lee <[email protected]> Reviewed-by: Mike Frysinger <[email protected]> Lint: Scott Lee <[email protected]> Tested-by: Scott Lee <[email protected]>
1 parent 044e52e commit b262d0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git_superproject.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def commit_id(self):
147147
"git rev-parse call failed, command: git {}, "
148148
"return code: {}, stderr: {}",
149149
cmd,
150-
p.stdwerr,
150+
retval,
151+
p.stderr,
151152
)
152153
return None
153154
return p.stdout

0 commit comments

Comments
 (0)