comparison hgext/graphlog.py @ 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 04baab18d60a
children c303d65d2e34
comparison
equal deleted inserted replaced
34996:602c168c0207 34997:0c9ba2ac60a8
64 Nodes printed as an @ character are parents of the working 64 Nodes printed as an @ character are parents of the working
65 directory. 65 directory.
66 66
67 This is an alias to :hg:`log -G`. 67 This is an alias to :hg:`log -G`.
68 """ 68 """
69 opts['graph'] = True 69 opts[r'graph'] = True
70 return commands.log(ui, repo, *pats, **opts) 70 return commands.log(ui, repo, *pats, **opts)