diff options
author | 2018-05-19 18:21:50 +0100 | |
---|---|---|
committer | 2018-05-19 18:21:50 +0100 | |
commit | 3b484f0527dd6a0c7face72991a3dbc195136689 (patch) | |
tree | 187d6f03b6d590240dd550d838302a3334313cc3 | |
parent | Add missing module to Pipfile (diff) |
Temporarily disable snakes cog while we fix a zlib issue
-rw-r--r-- | Pipfile | 2 | ||||
-rw-r--r-- | bot/__main__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ websockets = ">=4.0,<5.0" yarl = "==1.1.1" fuzzywuzzy = "*" python-levenshtein = "*" -pillow = "*" +# pillow = "*" [dev-packages] "flake8" = "*" diff --git a/bot/__main__.py b/bot/__main__.py index 6c115f40c..88ab82245 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -59,7 +59,7 @@ bot.load_extension("bot.cogs.deployment") bot.load_extension("bot.cogs.eval") bot.load_extension("bot.cogs.fun") bot.load_extension("bot.cogs.hiphopify") -bot.load_extension("bot.cogs.snakes") +# bot.load_extension("bot.cogs.snakes"), temporarily disabled while we fix a PIL/zlib issue bot.load_extension("bot.cogs.tags") bot.load_extension("bot.cogs.verification") |