Mercurial > public > mercurial-scm > hg-stable
diff mercurial/statichttprepo.py @ 13447:931a72e00efa stable
introduce new RequirementError (issue2649)
This improves the misleading error message
$ hg identify
abort: there is no Mercurial repository here (.hg not found)!
to the more explicit
$ hg identify
abort: requirement 'fake' not supported!
for all commands in commands.optionalrepo, which includes the identify
and serve commands in particular.
This is for the case when a new entry in .hg/requires will be defined
in a future Mercurial release.
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Fri, 18 Feb 2011 20:25:25 +0100 |
parents | 286a3720d472 |
children | b4f5f76386f2 |
line wrap: on
line diff
--- a/mercurial/statichttprepo.py Thu Feb 10 09:03:06 2011 +0100 +++ b/mercurial/statichttprepo.py Fri Feb 18 20:25:25 2011 +0100 @@ -112,7 +112,8 @@ # check them for r in requirements: if r not in self.supported: - raise error.RepoError(_("requirement '%s' not supported") % r) + raise error.RequirementError( + _("requirement '%s' not supported") % r) # setup store self.store = store.store(requirements, self.path, opener)