annotate: remove unused variable in calculation of column widths
authorYuya Nishihara <yuya@tcha.org>
Fri, 29 Aug 2014 06:19:32 +0200
changeset 22478 a6b1413511f1
parent 22477 3c8ae79eacb0
child 22479 5d9e46d93c1d
annotate: remove unused variable in calculation of column widths
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):