aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/info/pep.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2021-12-05 11:52:48 +0100
committerGravatar GitHub <[email protected]>2021-12-05 11:52:48 +0100
commit6e6a1694790523074fecc5a1ef358416b4e23bdc (patch)
tree6c25eea1590f991acf45c6d0de45605d195416c0 /bot/exts/info/pep.py
parentPatch d.py's message convertor to infer channelID from the given context (diff)
parentMerge pull request #1993 from python-discord/fetch-thread-if-not-in-cache (diff)
Merge branch 'main' into fix-message-convertor
Diffstat (limited to '')
-rw-r--r--bot/exts/info/pep.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/pep.py b/bot/exts/info/pep.py
index 259095b50..8c0db18bc 100644
--- a/bot/exts/info/pep.py
+++ b/bot/exts/info/pep.py
@@ -16,7 +16,7 @@ log = get_logger(__name__)
ICON_URL = "https://www.python.org/static/opengraph-icon-200x200.png"
BASE_PEP_URL = "http://www.python.org/dev/peps/pep-"
-PEPS_LISTING_API_URL = "https://api.github.com/repos/python/peps/contents?ref=master"
+PEPS_LISTING_API_URL = "https://api.github.com/repos/python/peps/contents?ref=main"
pep_cache = AsyncCache()