# HG changeset patch # User Martin von Zweigbergk # Date 2020-11-12 16:29:55 # Node ID 2eb8ad899fa636e1589da122d82e1be928821428 # Parent de1f4c431619a33b8e74e87365beae237198e222 errors: raise InputError in fancyopts If a value of wrong type is passed to a command line flag, that's cleary an InputError. Differential Revision: https://phab.mercurial-scm.org/D9308 diff --git a/mercurial/fancyopts.py b/mercurial/fancyopts.py --- a/mercurial/fancyopts.py +++ b/mercurial/fancyopts.py @@ -380,7 +380,7 @@ def fancyopts(args, options, state, gnu= else: def abort(s): - raise error.Abort( + raise error.InputError( _(b'invalid value %r for option %s, %s') % (pycompat.maybebytestr(val), opt, s) ) diff --git a/tests/test-import.t b/tests/test-import.t --- a/tests/test-import.t +++ b/tests/test-import.t @@ -1036,7 +1036,7 @@ test -p0 adding a $ hg import -p foo abort: invalid value 'foo' for option -p, expected int - [255] + [10] $ hg import -p0 - << EOF > foobar > --- a Sat Apr 12 22:43:58 2008 -0400