From 38734cb5187d76b69128314879f2d54aa48eb77c Mon Sep 17 00:00:00 2001 From: sravan1946 Date: Fri, 3 Nov 2023 10:22:55 +0530 Subject: [PATCH] use correct cog name --- afk/_tagscript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/afk/_tagscript.py b/afk/_tagscript.py index d3a73bd2..316c0aaa 100644 --- a/afk/_tagscript.py +++ b/afk/_tagscript.py @@ -89,7 +89,7 @@ async def validate_tagscriptengine(bot: Red, tse_version: str, *, reloaded: bool import TagScriptEngine as tse except ImportError as exc: raise CogLoadError( - "The ThreadOpener cog failed to install TagScriptEngine. Reinstall the cog and restart your " + "The AFK cog failed to install TagScriptEngine. Reinstall the cog and restart your " "bot. If it continues to fail to load, contact the cog author." ) from exc @@ -102,7 +102,7 @@ async def validate_tagscriptengine(bot: Red, tse_version: str, *, reloaded: bool commands = "\n".join(commands) message = ( - "The ThreadOpener cog attempted to install TagScriptEngine, but the version installed " + "The AFK cog attempted to install TagScriptEngine, but the version installed " "is outdated. Shut down your bot, then in shell in your venv, run the following " f"commands:\n{commands}\nAfter running these commands, restart your bot and reload " "Tags. If it continues to fail to load, contact the cog author."