Skip to content

Commit bd9a04c

Browse files
authored
Fix logging misspell in routines
1 parent f18f52b commit bd9a04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/ext/routines/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ async def _routine_loop(self, *args: Any, **kwargs: Any) -> None:
252252
await asyncio.sleep(sleep)
253253

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

258258
if self._after_routine:

0 commit comments

Comments
 (0)