Skip to content

Commit

Permalink
Fix logging misspell in routines
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy authored Dec 11, 2024
1 parent f18f52b commit bd9a04c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitchio/ext/routines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ async def _routine_loop(self, *args: Any, **kwargs: Any) -> None:
await asyncio.sleep(sleep)

except Exception as e:
msg = "A fatal error occured during an iteration of Routine: %s. This return will now be canceled."
msg = "A fatal error occured during an iteration of Routine: %s. This routine will now be canceled."
LOGGER.error(msg, self.__repr__(), exc_info=e)

if self._after_routine:
Expand Down

0 comments on commit bd9a04c

Please sign in to comment.