mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-13 07:11:08 +01:00
Fixed broken text output in the changes module.
This commit is contained in:
parent
662cd3fa63
commit
8e22f0d2ca
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ class ChangesOutput(Outputable):
|
|||
authorinfo = authorinfo_list.get(i)
|
||||
percentage = 0 if total_changes == 0 else (authorinfo.insertions + authorinfo.deletions) / total_changes * 100
|
||||
|
||||
print(i[0].ljust(20)[0:20], end=" ")
|
||||
print(i.ljust(20)[0:20], end=" ")
|
||||
print(str(authorinfo.commits).rjust(13), end=" ")
|
||||
print(str(authorinfo.insertions).rjust(13), end=" ")
|
||||
print(str(authorinfo.deletions).rjust(14), end=" ")
|
||||
|
|
Loading…
Reference in a new issue