summaryrefslogtreecommitdiffstats
path: root/git_superproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_superproject.py')
-rw-r--r--git_superproject.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/git_superproject.py b/git_superproject.py
index 04e2078d..3168d9f8 100644
--- a/git_superproject.py
+++ b/git_superproject.py
@@ -28,7 +28,6 @@ import sys
28 28
29from git_command import GitCommand 29from git_command import GitCommand
30from git_refs import R_HEADS 30from git_refs import R_HEADS
31from wrapper import Wrapper
32 31
33_SUPERPROJECT_GIT_NAME = 'superproject.git' 32_SUPERPROJECT_GIT_NAME = 'superproject.git'
34_SUPERPROJECT_MANIFEST_NAME = 'superproject_override.xml' 33_SUPERPROJECT_MANIFEST_NAME = 'superproject_override.xml'
@@ -283,7 +282,7 @@ class Superproject(object):
283 projects_missing_commit_ids.append(path) 282 projects_missing_commit_ids.append(path)
284 if projects_missing_commit_ids: 283 if projects_missing_commit_ids:
285 print('error: please file a bug using %s to report missing commit_ids for: %s' % 284 print('error: please file a bug using %s to report missing commit_ids for: %s' %
286 (Wrapper().BUG_URL, projects_missing_commit_ids), file=sys.stderr) 285 (self._manifest.contactinfo.bugurl, projects_missing_commit_ids), file=sys.stderr)
287 return None 286 return None
288 287
289 manifest_path = self._WriteManfiestFile() 288 manifest_path = self._WriteManfiestFile()