Fixed some inconsistent output spacing
This commit is contained in:
parent
aa990d4141
commit
6d53d93d3e
1 changed files with 4 additions and 5 deletions
|
|
@ -116,18 +116,17 @@ def main():
|
|||
|
||||
# Print overview
|
||||
if not args.quiet:
|
||||
print("Found the following changes:\n")
|
||||
print("Found the following changes:")
|
||||
if new:
|
||||
print("Added:")
|
||||
print("\nAdded:")
|
||||
for i in new:
|
||||
print(f" + {i}")
|
||||
print()
|
||||
if changed:
|
||||
print("Changed:")
|
||||
print("\nChanged:")
|
||||
for i in changed:
|
||||
print(f" ~ {i}")
|
||||
if deleted:
|
||||
print("Deleted:")
|
||||
print("\nDeleted:")
|
||||
for i in deleted:
|
||||
print(f" - {i}")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue