# HG changeset patch # User Augie Fackler # Date 1495992521 14400 # Node ID 0cec8ad579d42df8d3608f0c25a0bf3761049471 # Parent 3b8155305fbee24221bf1739fb9076703e50f86b help: convert dict to strkwargs diff -r 3b8155305fbe -r 0cec8ad579d4 mercurial/help.py --- 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)