Mercurial > hg
changeset 32547:0cec8ad579d4
help: convert dict to strkwargs
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sun, 28 May 2017 13:28:41 -0400 |
parents | 3b8155305fbe |
children | d770a08ee9d9 |
files | mercurial/help.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)