aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2019-11-03 20:06:15 +0100
committerGravatar Numerlor <[email protected]>2019-11-03 20:06:15 +0100
commita8475f5fedb91c9e0f1c5c28c7d64aebbbef64f4 (patch)
treee20890328faa9326d22309fd2b612ba6a009fcea
parentHandle exceptions when fetching inventories (diff)
Fix case for the python package name in `NO_OVERRIDE_PACKAGES`
-rw-r--r--bot/cogs/doc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/doc.py b/bot/cogs/doc.py
index 55b69e9a4..563f83040 100644
--- a/bot/cogs/doc.py
+++ b/bot/cogs/doc.py
@@ -35,7 +35,7 @@ NO_OVERRIDE_GROUPS = (
"term",
)
NO_OVERRIDE_PACKAGES = (
- "Python",
+ "python",
)
FAILED_REQUEST_RETRY_AMOUNT = 3
UNWANTED_SIGNATURE_SYMBOLS_RE = re.compile(r"\[source]|\\\\|ΒΆ")