From a2c62da2f5c4d084013b22a5ab7b93648d2698cb Mon Sep 17 00:00:00 2001 From: Kevin Wagner <111701655+KWagnerCS@users.noreply.github.com> Date: Mon, 5 Feb 2024 22:51:26 -0500 Subject: [PATCH] Small syntax error in exception message '\l' is an escape sequence in python, '\\l' would print \logs as intended --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 9cd8e43c..1a3448c7 100644 --- a/main.py +++ b/main.py @@ -811,9 +811,9 @@ def get_ip(): log(traceback.format_exc()) print(color( "The program has encountered an error. If the problem persists, please reach support" - f" with the logs found in {os.getcwd()}\logs", fore=(255, 0, 0))) + f" with the logs found in {os.getcwd()}\\logs", fore=(255, 0, 0))) chatlog(color( "The program has encountered an error. If the problem persists, please reach support" - f" with the logs found in {os.getcwd()}\logs", fore=(255, 0, 0))) + f" with the logs found in {os.getcwd()}\\logs", fore=(255, 0, 0))) input("press enter to exit...\n") os._exit(1)