Skip to content

Commit

Permalink
Merge pull request #189 from KWagnerCS/syntax
Browse files Browse the repository at this point in the history
Small syntax error in exception message
  • Loading branch information
zayKenyon authored Mar 18, 2024
2 parents 46ad03c + a2c62da commit b122164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,9 +807,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)

0 comments on commit b122164

Please sign in to comment.