# HG changeset patch # User Yuya Nishihara # Date 1522844275 -32400 # Node ID 623dc2651d2627d6801019e9ba9972a9565bf2b3 # Parent b3992c21b7f3ee1c37ec1f0cd0e9e561bca4482e hgweb: drop unused argument 'tmpl' from webutil.compare() diff -r b3992c21b7f3 -r 623dc2651d26 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Wed Apr 04 21:17:10 2018 +0900 +++ b/mercurial/hgweb/webcommands.py Wed Apr 04 21:17:55 2018 +0900 @@ -886,7 +886,7 @@ pfctx = ctx.parents()[0][path] leftlines = filelines(pfctx) - comparison = webutil.compare(web.tmpl, context, leftlines, rightlines) + comparison = webutil.compare(context, leftlines, rightlines) if fctx is not None: rename = webutil.renamelink(fctx) ctx = fctx diff -r b3992c21b7f3 -r 623dc2651d26 mercurial/hgweb/webutil.py --- a/mercurial/hgweb/webutil.py Wed Apr 04 21:17:10 2018 +0900 +++ b/mercurial/hgweb/webutil.py Wed Apr 04 21:17:55 2018 +0900 @@ -633,7 +633,7 @@ l = _getcompblock(leftlines, rightlines, oc) yield {'lines': l} -def compare(tmpl, contextnum, leftlines, rightlines): +def compare(contextnum, leftlines, rightlines): args = (contextnum, leftlines, rightlines) return templateutil.mappinggenerator(_comparegen, args=args, name='comparisonblock')