# HG changeset patch # User Yuya Nishihara # Date 1409285972 -7200 # Node ID a6b1413511f120f568ad2ce9bcb1446186cfceb0 # Parent 3c8ae79eacb0e9896e34ea04da19402005913e60 annotate: remove unused variable in calculation of column widths diff -r 3c8ae79eacb0 -r a6b1413511f1 mercurial/commands.py --- a/mercurial/commands.py Fri Aug 29 05:36:52 2014 +0200 +++ b/mercurial/commands.py Fri Aug 29 06:19:32 2014 +0200 @@ -319,10 +319,9 @@ for f, sep in funcmap: l = [f(n) for n, dummy in lines] if l: - sized = [(x, encoding.colwidth(x)) for x in l] - ml = max([w for x, w in sized]) - formats.append([sep + ' ' * (ml - w) + '%s' - for x, w in sized]) + sizes = [encoding.colwidth(x) for x in l] + ml = max(sizes) + formats.append([sep + ' ' * (ml - w) + '%s' for w in sizes]) pieces.append(l) for f, p, l in zip(zip(*formats), zip(*pieces), lines):