[BUGFIX] Add line break to transaction logs (#622)
* add line break to logs * Update main.py
This commit is contained in:
parent
ac5080f273
commit
465a290f8b
1 changed files with 1 additions and 1 deletions
|
|
@ -199,7 +199,7 @@ def _output_transaction_log(
|
|||
transaction_log_file_contents = ""
|
||||
for subscription, transaction_log in transaction_logs:
|
||||
if transaction_log.is_empty:
|
||||
transaction_log_contents = f"No files changed for {subscription.name}"
|
||||
transaction_log_contents = f"\nNo files changed for {subscription.name}"
|
||||
else:
|
||||
transaction_log_contents = (
|
||||
f"Transaction log for {subscription.name}:\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue