Skip to content
Snippets Groups Projects
Commit 66eb74f9 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

hgweb: pass ui to diffstatgen() explicitly

parent c6398fc2
No related branches found
No related tags found
No related merge requests found
......@@ -509,7 +509,7 @@
diff = diffs(web, ctx, basectx, None, style)
parity = paritygen(web.stripecount)
diffstatsgen = diffstatgen(ctx, basectx)
diffstatsgen = diffstatgen(web.repo.ui, ctx, basectx)
diffstats = diffstat(ctx, diffstatsgen, parity)
return dict(
......@@ -655,6 +655,6 @@
return templateutil.mappinggenerator(_comparegen, args=args,
name='comparisonblock')
def diffstatgen(ctx, basectx):
def diffstatgen(ui, ctx, basectx):
'''Generator function that provides the diffstat data.'''
......@@ -659,6 +659,6 @@
'''Generator function that provides the diffstat data.'''
diffopts = patch.diffopts(ctx._repo.ui, {'noprefix': False})
diffopts = patch.diffopts(ui, {'noprefix': False})
stats = patch.diffstatdata(
util.iterlines(ctx.diff(basectx, opts=diffopts)))
maxname, maxtotal, addtotal, removetotal, binary = patch.diffstatsum(stats)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment