diff -r fb9b7b937b3e -r fd7287f0b43c hgext/churn.py --- a/hgext/churn.py Tue Apr 14 12:45:15 2015 -0700 +++ b/hgext/churn.py Mon May 04 10:01:03 2015 +0900 @@ -9,7 +9,7 @@ '''command to display statistics about repository history''' from mercurial.i18n import _ -from mercurial import patch, cmdutil, scmutil, util, templater, commands +from mercurial import patch, cmdutil, scmutil, util, commands from mercurial import encoding import os import time, datetime @@ -19,7 +19,6 @@ testedwith = 'internal' def maketemplater(ui, repo, tmpl): - tmpl = templater.parsestring(tmpl, quoted=False) try: t = cmdutil.changeset_templater(ui, repo, False, None, tmpl, None, False)