changeset 34997:0c9ba2ac60a8

py3: handle keyword arguments in hgext/graphlog.py Differential Revision: https://phab.mercurial-scm.org/D1316
author Pulkit Goyal <7895pulkit@gmail.com>
date Mon, 23 Oct 2017 00:03:08 +0530
parents 602c168c0207
children fc0e6d298cd4
files hgext/graphlog.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)