##// END OF EJS Templates
annotate: remove redundant check for empty list of annotation data...
Yuya Nishihara -
r22452:75e166b8 default
parent child Browse files
Show More
@@ -323,7 +323,6 b' def annotate(ui, repo, *pats, **opts):'
323 pieces.append(["%s%s%s" % (sep, ' ' * (ml - w), x)
323 pieces.append(["%s%s%s" % (sep, ' ' * (ml - w), x)
324 for x, w in sized])
324 for x, w in sized])
325
325
326 if pieces:
327 for p, l in zip(zip(*pieces), lines):
326 for p, l in zip(zip(*pieces), lines):
328 ui.write("%s: %s" % ("".join(p), l[1]))
327 ui.write("%s: %s" % ("".join(p), l[1]))
329
328
General Comments 0
You need to be logged in to leave comments. Login now