diff --git a/error.py b/error.py index 7e52b016..ff948f9c 100644 --- a/error.py +++ b/error.py @@ -24,6 +24,13 @@ class ManifestInvalidRevisionError(Exception): class NoManifestException(Exception): """The required manifest does not exist. """ + def __init__(self, path, reason): + super(NoManifestException, self).__init__() + self.path = path + self.reason = reason + + def __str__(self): + return self.reason class EditorError(Exception): """Unspecified error from the user's text editor. diff --git a/main.py b/main.py index 36617762..72fb39b0 100755 --- a/main.py +++ b/main.py @@ -129,8 +129,15 @@ class _Repo(object): file=sys.stderr) return 1 - copts, cargs = cmd.OptionParser.parse_args(argv) - copts = cmd.ReadEnvironmentOptions(copts) + try: + copts, cargs = cmd.OptionParser.parse_args(argv) + copts = cmd.ReadEnvironmentOptions(copts) + except NoManifestException as e: + print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)), + file=sys.stderr) + print('error: manifest missing or unreadable -- please run init', + file=sys.stderr) + return 1 if not gopts.no_pager and not isinstance(cmd, InteractiveCommand): config = cmd.manifest.globalConfig @@ -146,15 +153,13 @@ class _Repo(object): start = time.time() try: result = cmd.Execute(copts, cargs) - except DownloadError as e: - print('error: %s' % str(e), file=sys.stderr) - result = 1 - except ManifestInvalidRevisionError as e: - print('error: %s' % str(e), file=sys.stderr) - result = 1 - except NoManifestException as e: - print('error: manifest required for this command -- please run init', - file=sys.stderr) + except (DownloadError, ManifestInvalidRevisionError, + NoManifestException) as e: + print('error: in `%s`: %s' % (' '.join([name] + argv), str(e)), + file=sys.stderr) + if isinstance(e, NoManifestException): + print('error: manifest missing or unreadable -- please run init', + file=sys.stderr) result = 1 except NoSuchProjectError as e: if e.name: diff --git a/project.py b/project.py index d07b5216..023cf732 100644 --- a/project.py +++ b/project.py @@ -2327,8 +2327,8 @@ class Project(object): path = os.path.join(self._project.worktree, '.git', HEAD) try: fd = open(path, 'rb') - except IOError: - raise NoManifestException(path) + except IOError as e: + raise NoManifestException(path, str(e)) try: line = fd.read() finally: