diff options
| author | 2019-11-03 20:06:15 +0100 | |
|---|---|---|
| committer | 2019-11-03 20:06:15 +0100 | |
| commit | a8475f5fedb91c9e0f1c5c28c7d64aebbbef64f4 (patch) | |
| tree | e20890328faa9326d22309fd2b612ba6a009fcea | |
| parent | Handle exceptions when fetching inventories (diff) | |
Fix case for the python package name in `NO_OVERRIDE_PACKAGES`
| -rw-r--r-- | bot/cogs/doc.py | 2 |
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]|\\\\|ΒΆ") |