[Request] [+ ] D11968: logcmdutil: raise `InputError` on bad CLI arguments
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Fri Jan 7 06:10:55 UTC 2022
martinvonz created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
Apparently there were no tests for any of these errors.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11968
AFFECTED FILES
mercurial/logcmdutil.py
CHANGE DETAILS
diff --git a/mercurial/logcmdutil.py b/mercurial/logcmdutil.py
--- a/mercurial/logcmdutil.py
+++ b/mercurial/logcmdutil.py
@@ -62,9 +62,9 @@
try:
limit = int(limit)
except ValueError:
- raise error.Abort(_(b'limit must be a positive integer'))
+ raise error.InputError(_(b'limit must be a positive integer'))
if limit <= 0:
- raise error.Abort(_(b'limit must be positive'))
+ raise error.InputError(_(b'limit must be positive'))
else:
limit = None
return limit
@@ -1108,11 +1108,13 @@
try:
pat, linerange = pat.rsplit(b',', 1)
except ValueError:
- raise error.Abort(_(b'malformatted line-range pattern %s') % pat)
+ raise error.InputError(
+ _(b'malformatted line-range pattern %s') % pat
+ )
try:
fromline, toline = map(int, linerange.split(b':'))
except ValueError:
- raise error.Abort(_(b"invalid line range for %s") % pat)
+ raise error.InputError(_(b"invalid line range for %s") % pat)
msg = _(b"line range pattern '%s' must match exactly one file") % pat
fname = scmutil.parsefollowlinespattern(repo, None, pat, msg)
linerangebyfname.append(
@@ -1271,7 +1273,7 @@
def checkunsupportedgraphflags(pats, opts):
for op in [b"newest_first"]:
if op in opts and opts[op]:
- raise error.Abort(
+ raise error.InputError(
_(b"-G/--graph option is incompatible with --%s")
% op.replace(b"_", b"-")
)
To: martinvonz, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20220107/8b6441c7/attachment.html>
More information about the Mercurial-patches
mailing list