Skip to content

Commit

Permalink
fix: Typo in compile error search (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobbyperson authored Dec 26, 2024
1 parent 1c8052a commit b9cbabf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reaper/cogs/log_reading.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ async def on_message(self, message):
compile_search = re.search(r"COMPILE ERROR\s*(.*)", log)
if compile_search:
details = compile_search.group(1)
if 'expected ",", found indentifier "inputParams"' in details:
if 'expected ",", found identifier "inputParams"' in details:
hud = False
callback = False
# its ok to check the mods now because all of the mods will have been loaded at this point
Expand Down

0 comments on commit b9cbabf

Please sign in to comment.