# HG changeset patch # User Augie Fackler # Date 2017-05-28 17:28:41 # Node ID 0cec8ad579d42df8d3608f0c25a0bf3761049471 # Parent 3b8155305fbee24221bf1739fb9076703e50f86b help: convert dict to strkwargs diff --git a/mercurial/help.py b/mercurial/help.py --- a/mercurial/help.py +++ b/mercurial/help.py @@ -615,7 +615,7 @@ def help_(ui, name, unknowncmd=False, fu # 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)