49
49
max_origin_len = max(len(origin) for origin in set(x[1] for x in annotation))
50
50
max_revno_len = max(len(x[0]) for x in annotation)
52
55
for (revno_str, author, date_str, line_rev_id, text ) in annotation:
54
57
anno = '%-*s %-*s %8s ' % (max_revno_len, revno_str, max_origin_len, author, date_str)
56
61
anno = "%-*s %-7s " % (max_revno_len, revno_str, author[:7] )
58
63
if anno.lstrip() == "" and full: anno = prevanno