# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2017-10-22 18:33:08 # Node ID 0c9ba2ac60a8fb8661c7b59ed4c3cc71892944ad # Parent 602c168c0207c443ac61f7a7c727b31cfb0b86ad py3: handle keyword arguments in hgext/graphlog.py Differential Revision: https://phab.mercurial-scm.org/D1316 diff --git a/hgext/graphlog.py b/hgext/graphlog.py --- a/hgext/graphlog.py +++ b/hgext/graphlog.py @@ -66,5 +66,5 @@ def glog(ui, repo, *pats, **opts): This is an alias to :hg:`log -G`. """ - opts['graph'] = True + opts[r'graph'] = True return commands.log(ui, repo, *pats, **opts)