Remove verification system (Fix)

This commit is contained in:
EEKIM10 2023-05-02 14:48:55 +01:00
parent 5696fa6ed0
commit 281b0cce45

View file

@ -38,7 +38,7 @@ class Bot(commands.Bot):
for ext in extensions:
try:
self.load_extension(ext)
except discord.ExtensionFailed as e:
except (discord.ExtensionNotFound, discord.ExtensionFailed, OSError) as e:
console.log(f"[red]Failed to load extension {ext}: {e}")
if getattr(config, "dev", False):
console.print_exception()