diff options
author | 2020-10-31 15:38:28 +0800 | |
---|---|---|
committer | 2020-10-31 15:38:28 +0800 | |
commit | 12a0832d9259b20eb622bcc4a0b5e2c2d766628a (patch) | |
tree | 417171f1dd50be5b4ef5bf6298d8f8436da32db1 /bot/exts/halloween/hacktoberstats.py | |
parent | Put GitHub user-not-found message in embed (diff) |
Fix capitalization of 'PR' in hacktoberstats.py
Diffstat (limited to 'bot/exts/halloween/hacktoberstats.py')
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index bb5a6325..a5ec4dc4 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -336,7 +336,7 @@ class HacktoberStats(commands.Cog): if hackto_topics[shortname]: outlist.append(itemdict) continue - # Fetch topics for the pr repo + # Fetch topics for the PR's repo topics_query_url = f"https://api.github.com/repos/{shortname}/topics" logging.debug(f"Fetching repo topics for {shortname} with url: {topics_query_url}") jsonresp2 = await HacktoberStats._fetch_url(topics_query_url, GITHUB_TOPICS_ACCEPT_HEADER) |