diff --git a/DataPuller.py b/DataPuller.py index 94ad097..a78dde7 100755 --- a/DataPuller.py +++ b/DataPuller.py @@ -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}")