On Wed, 23 May 2018 00:00:19 -0400, Matt Harbison wrote:
> # HG changeset patch
> # User Matt Harbison <matt_harbi...@yahoo.com>
> # Date 1527047288 14400
> #      Tue May 22 23:48:08 2018 -0400
> # Node ID e951e2017229ef3e84bef144fb50546de058d93b
> # Parent  a6bed2a6eafea7d89af7e12696169c754c9bf64a
> githelp: cleanup one more abort message

Queued, thanks.

> --- a/hgext/githelp.py
> +++ b/hgext/githelp.py
> @@ -94,10 +94,9 @@ def parseoptions(ui, cmdoptions, args):
>              try:
>                  args.remove(flag)
>              except Exception:
> -                raise error.Abort(
> -                    "unknown option {0} packed with other options\n"
> -                    "Please try passing the option as it's own flag: -{0}" \
> -                    .format(ex.opt))
> +                msg = _("unknown option '{0}' packed with other options")
> +                hint = _("please try passing the option as its own flag: 
> -{0}")
> +                raise error.Abort(msg.format(ex.opt), 
> hint=hint.format(ex.opt))

We'll have to replace s.format(x) with 's % x' for Py3 compatibility.
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to