Skip to content

Commit

Permalink
fix f-string breaking the whole point of this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
fe-art committed Sep 19, 2024
1 parent e799a01 commit 896b8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion error_handling/wikify_error.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def get_wikified_error_message(error_code: str, reason: str) -> str:
err_str = f"\u26A0 Error #E{str(error_code)}: {reason}"
link = "https://github.com/Pbatch/ClashRoyaleBuildABot/wiki/"
link += "Troubleshooting#error-e{str(error_code)}"
link += f"Troubleshooting#error-e{str(error_code)}"
err_str += f" See {link} for more information."
err_str += " You might find more context above this error.\n\n"
return err_str
Expand Down

0 comments on commit 896b8d9

Please sign in to comment.