Skip to content

Commit

Permalink
Fix message formatting with newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
ThioJoe committed Jan 15, 2022
1 parent 247d5da commit b68d2e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions YouTubeSpammerPurge.py
Original file line number Diff line number Diff line change
Expand Up @@ -3776,7 +3776,7 @@ def scan_video(miscData, config, filtersDict, scanVideoID, videosToScan=None, vi
input("\nPress Enter to return to main menu...")
return True
elif config['auto_close'] == True:
print("Auto-close enabled in config. Exiting in 5 seconds...")
print("\nAuto-close enabled in config. Exiting in 5 seconds...")
time.sleep(5)
sys.exit()

Expand Down Expand Up @@ -4020,7 +4020,7 @@ def write_func(logFileName, string, logMode, numLines):
print("Possible Cause: You're scanning someone elses video with a non-supported filter mode.\n")
print("If you think this is a bug, you may report it on this project's GitHub page: https://github.com/ThioJoe/YT-Spammer-Purge/issues")
if config['auto_close'] == True:
print("Auto-close enabled in config. Exiting in 5 seconds...")
print("\nAuto-close enabled in config. Exiting in 5 seconds...")
time.sleep(5)
sys.exit()
else:
Expand Down Expand Up @@ -4134,7 +4134,7 @@ def write_func(logFileName, string, logMode, numLines):
write_plaintext_log(current.logFileName, str(plaintextExclude))

if config['auto_close'] == True:
print("Program Complete.")
print("\nProgram Complete.")
print("Auto-close enabled in config. Exiting in 5 seconds...")
time.sleep(5)
sys.exit()
Expand All @@ -4144,7 +4144,7 @@ def write_func(logFileName, string, logMode, numLines):

elif config['deletion_enabled'] == False:
if config['auto_close'] == True:
print("Deletion disabled in config file.")
print("\nDeletion disabled in config file.")
print("Auto-close enabled in config. Exiting in 5 seconds...")
time.sleep(5)
sys.exit()
Expand Down

0 comments on commit b68d2e0

Please sign in to comment.