aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-15 15:42:51 -0400
committerGravatar ToxicKidz <[email protected]>2021-05-15 15:42:51 -0400
commit320a1be0bfc27813c6a2e9004d8006a037262d51 (patch)
tree82768ae7baccd3f450fa98df90dd7616d6c56b13
parentchore: Apply suggestions from code review (diff)
parentMerge pull request #737 from python-discord/latex-don't-load-cog (diff)
chore: Resolve conflicts for the last time (hopefully)
-rw-r--r--bot/exts/evergreen/latex.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/exts/evergreen/latex.py b/bot/exts/evergreen/latex.py
index 54d25267..36c7e0ab 100644
--- a/bot/exts/evergreen/latex.py
+++ b/bot/exts/evergreen/latex.py
@@ -93,4 +93,9 @@ class Latex(commands.Cog):
def setup(bot: Bot) -> None:
"""Load the Latex Cog."""
+ # As we have resource issues on this cog,
+ # we have it currently disabled while we fix it.
+ import logging
+ logging.info("Latex cog is currently disabled. It won't be loaded.")
+ return
bot.add_cog(Latex())