diff options
author | 2020-10-24 15:45:28 +0200 | |
---|---|---|
committer | 2020-10-24 15:45:28 +0200 | |
commit | fe4921e9a6c1400d4a89d6eff64cfee464da7464 (patch) | |
tree | a8088247f2075b8f3bcfe383f3929d74896a1603 | |
parent | fix time and date specific things (diff) | |
parent | Update Python Discord badge to 100k members. (diff) |
Merge branch 'master' into hackto-dates
-rwxr-xr-x | README.md | 2 | ||||
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # SeasonalBot [)](https://dev.azure.com/python-discord/Python%20Discord/_build/latest?definitionId=3) -[](https://discord.gg/2B963hn) +[](https://discord.gg/2B963hn) A Discord bot for the Python Discord community which changes with the seasons, and provides useful event features. diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 0b75ca91..d2762513 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -307,7 +307,7 @@ class HacktoberStats(commands.Cog): # if the PR has 'invalid' or 'spam' labels, the PR must be # either merged or approved for it to be included if HacktoberStats._has_label(item, ["invalid", "spam"]): - if not await HacktoberStats._is_accepted(item): + if not await HacktoberStats._is_accepted(itemdict): continue # PRs before oct 3 no need to check for topics |