Mercurial > public > mercurial-scm > hg-stable
diff hgext/graphlog.py @ 24200:8e1f1673aa9a
graphlog: do not bypass commands.log so that -fr works
Since 8b4b9ee6001a, opts dict can be modified in commands.log() before calling
cmdutil.graphlog().
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 04 Mar 2015 21:47:07 +0900 |
parents | 8d43c6bb38c0 |
children | 80c5b2666a96 |
line wrap: on
line diff
--- a/hgext/graphlog.py Wed Jan 21 14:45:24 2015 -0800 +++ b/hgext/graphlog.py Wed Mar 04 21:47:07 2015 +0900 @@ -54,4 +54,5 @@ Nodes printed as an @ character are parents of the working directory. """ - return cmdutil.graphlog(ui, repo, *pats, **opts) + opts['graph'] = True + return commands.log(ui, repo, *pats, **opts)