##// END OF EJS Templates
py3: handle keyword arguments in hgext/graphlog.py...
Pulkit Goyal -
r34998:0c9ba2ac default
parent child Browse files
Show More
@@ -66,5 +66,5 b' def glog(ui, repo, *pats, **opts):'
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)
General Comments 0
You need to be logged in to leave comments. Login now