errors: raise InputError on bad revset to revrange() iff provided by the user
Most callers of `scmutil.revrange()` pass in a revset provided by the user. If there are problems resolving that, it should result in an `InputError` and exit code 10 (when using detailed exit codes). However, there are also some callers that pass in revsets not provided by the user. `InputError` is not appropriate in those cases. This patch therefore introduces a wrapper around `scmutil.revrange()` that simply converts the exception type. I put it in `logcmdutil.py` since that seems to be the lowest-level module in the (poorly defined) UI layer. Differential Revision: https://phab.mercurial-scm.org/D11560
Showing
- contrib/synthrepo.py 2 additions, 2 deletionscontrib/synthrepo.py
- hgext/closehead.py 2 additions, 2 deletionshgext/closehead.py
- hgext/convert/hg.py 2 additions, 2 deletionshgext/convert/hg.py
- hgext/fastexport.py 2 additions, 1 deletionhgext/fastexport.py
- hgext/fix.py 4 additions, 3 deletionshgext/fix.py
- hgext/histedit.py 3 additions, 3 deletionshgext/histedit.py
- hgext/largefiles/lfcommands.py 2 additions, 1 deletionhgext/largefiles/lfcommands.py
- hgext/largefiles/overrides.py 2 additions, 2 deletionshgext/largefiles/overrides.py
- hgext/lfs/__init__.py 2 additions, 1 deletionhgext/lfs/__init__.py
- hgext/mq.py 3 additions, 3 deletionshgext/mq.py
- hgext/patchbomb.py 2 additions, 1 deletionhgext/patchbomb.py
- hgext/phabricator.py 2 additions, 2 deletionshgext/phabricator.py
- hgext/rebase.py 4 additions, 3 deletionshgext/rebase.py
- hgext/releasenotes.py 2 additions, 2 deletionshgext/releasenotes.py
- hgext/split.py 2 additions, 1 deletionhgext/split.py
- hgext/transplant.py 2 additions, 3 deletionshgext/transplant.py
- mercurial/cmdutil.py 1 addition, 1 deletionmercurial/cmdutil.py
- mercurial/commands.py 10 additions, 10 deletionsmercurial/commands.py
- mercurial/debugcommands.py 6 additions, 6 deletionsmercurial/debugcommands.py
- mercurial/hg.py 1 addition, 1 deletionmercurial/hg.py
Loading
Please register or sign in to comment