From a1cd770d566400364c43acd40b980a7138820797 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 20 Apr 2021 23:38:04 -0400 Subject: help/version: sprinkle bug report URL around Make it a bit easier for people to locate bug reporting info. Change-Id: If9c8939c84ebd52eb96b353c1797afa25868bb85 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/303943 Tested-by: Mike Frysinger Reviewed-by: Raman Tenneti --- git_superproject.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git_superproject.py') diff --git a/git_superproject.py b/git_superproject.py index 89320971..2516545d 100644 --- a/git_superproject.py +++ b/git_superproject.py @@ -26,9 +26,9 @@ import hashlib import os import sys -from error import BUG_REPORT_URL from git_command import GitCommand from git_refs import R_HEADS +from wrapper import Wrapper _SUPERPROJECT_GIT_NAME = 'superproject.git' _SUPERPROJECT_MANIFEST_NAME = 'superproject_override.xml' @@ -273,7 +273,7 @@ class Superproject(object): projects_missing_commit_ids.append(path) if projects_missing_commit_ids: print('error: please file a bug using %s to report missing commit_ids for: %s' % - (BUG_REPORT_URL, projects_missing_commit_ids), file=sys.stderr) + (Wrapper().BUG_URL, projects_missing_commit_ids), file=sys.stderr) return None manifest_path = self._WriteManfiestFile() -- cgit v1.2.3-54-g00ecf