Commit 4a0dd8a0 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 3d781761
......@@ -1440,7 +1440,9 @@ def dump_history(t):
print('>>> Change history by file:\n')
for zf in t.zfiles():
print('f<%s>:' % h(zf._p_oid))
print('\t%s\t%s' % (' '*len(t.hat(t.head)), ' '.join('abcdefgh')))
indent = '\t%s\t' % (' '*len(t.hat(t.head)),)
print('%s%s' % (indent, ' '.join('01234567')))
print('%s%s' % (indent, ' '.join('abcdefgh')))
for dF in t.dFtail:
df = dF.byfile.get(zf)
emitv = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment