diff options
Diffstat (limited to 'git_superproject.py')
-rw-r--r-- | git_superproject.py | 3 |
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 | ||
29 | from git_command import GitCommand | 29 | from git_command import GitCommand |
30 | from git_refs import R_HEADS | 30 | from git_refs import R_HEADS |
31 | from 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() |