Mercurial > public > mercurial-scm > hg
diff hgext/journal.py @ 35954:386c1e45e671
logcmdutil: drop default arguments from changesetdisplayer/templater() calls
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 21 Jan 2018 14:28:03 +0900 |
parents | c8e2d6ed1f9e |
children | 0fe7e39dc683 |
line wrap: on
line diff
--- a/hgext/journal.py Sun Jan 21 13:47:06 2018 +0900 +++ b/hgext/journal.py Sun Jan 21 14:28:03 2018 +0900 @@ -503,8 +503,7 @@ fm.write('command', ' %s\n', entry.command) if opts.get("commits"): - displayer = logcmdutil.changesetdisplayer(ui, repo, opts, - buffered=False) + displayer = logcmdutil.changesetdisplayer(ui, repo, opts) for hash in entry.newhashes: try: ctx = repo[hash]