py3: handle keyword arguments in hgext/graphlog.py
authorPulkit Goyal <7895pulkit@gmail.com>
Mon, 23 Oct 2017 00:03:08 +0530
changeset 34997 0c9ba2ac60a8
parent 34996 602c168c0207
child 34998 fc0e6d298cd4
py3: handle keyword arguments in hgext/graphlog.py Differential Revision: https://phab.mercurial-scm.org/D1316
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)