# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1508697188 -19800 # Node ID 0c9ba2ac60a8fb8661c7b59ed4c3cc71892944ad # Parent 602c168c0207c443ac61f7a7c727b31cfb0b86ad py3: handle keyword arguments in hgext/graphlog.py Differential Revision: https://phab.mercurial-scm.org/D1316 diff -r 602c168c0207 -r 0c9ba2ac60a8 hgext/graphlog.py --- a/hgext/graphlog.py Tue Nov 07 13:18:49 2017 -0500 +++ b/hgext/graphlog.py Mon Oct 23 00:03:08 2017 +0530 @@ -66,5 +66,5 @@ This is an alias to :hg:`log -G`. """ - opts['graph'] = True + opts[r'graph'] = True return commands.log(ui, repo, *pats, **opts)