Mercurial > public > mercurial-scm > hg-stable
diff mercurial/help.py @ 32580:0cec8ad579d4
help: convert dict to strkwargs
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sun, 28 May 2017 13:28:41 -0400 |
parents | bd872f64a8ba |
children | 633c635a790a |
line wrap: on
line diff
--- a/mercurial/help.py Sun May 28 13:42:16 2017 -0400 +++ b/mercurial/help.py Sun May 28 13:28:41 2017 -0400 @@ -615,7 +615,7 @@ # program name if not ui.quiet: rst = [_("Mercurial Distributed SCM\n"), '\n'] - rst.extend(helplist(None, **opts)) + rst.extend(helplist(None, **pycompat.strkwargs(opts))) return ''.join(rst)