diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2015-08-20 16:41:04 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2015-08-20 16:41:04 +0900 |
commit | 022a1d4e6ec574d6b21febde8d2088393f42c5fb (patch) | |
tree | ff173294d747bb0af8146a25b7c94a753998805d | |
parent | 41d1baac31e4a109480a6129c4f1f1cd2b37c1c9 (diff) | |
download | git-repo-022a1d4e6ec574d6b21febde8d2088393f42c5fb.tar.gz |
gitc_utils: Fix incorrect string format argument
Change-Id: Ibbac6e111833c8f5d93cb6cb4a10f8f2c4fd8e11
-rw-r--r-- | gitc_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitc_utils.py b/gitc_utils.py index 0dce93bf..ef028b08 100644 --- a/gitc_utils.py +++ b/gitc_utils.py | |||
@@ -46,7 +46,7 @@ def _set_project_revisions(projects): | |||
46 | for project in projects if not git_config.IsId(project.revisionExpr)] | 46 | for project in projects if not git_config.IsId(project.revisionExpr)] |
47 | for proj, gitcmd in project_gitcmds: | 47 | for proj, gitcmd in project_gitcmds: |
48 | if gitcmd.Wait(): | 48 | if gitcmd.Wait(): |
49 | print('FATAL: Failed to retrieve revisionExpr for %s' % project) | 49 | print('FATAL: Failed to retrieve revisionExpr for %s' % proj) |
50 | sys.exit(1) | 50 | sys.exit(1) |
51 | proj.revisionExpr = gitcmd.stdout.split('\t')[0] | 51 | proj.revisionExpr = gitcmd.stdout.split('\t')[0] |
52 | 52 | ||