diff options
| author | 2020-03-31 16:18:59 +0200 | |
|---|---|---|
| committer | 2020-03-31 16:18:59 +0200 | |
| commit | 00af207de3087a41270f216ad86e06ba7dbf9d42 (patch) | |
| tree | d317e2c66a658e2311350a592803eb88f7112312 /bot/exts/halloween/hacktober-issue-finder.py | |
| parent | Deseasonify: resolve current season w.r.t. month override (diff) | |
Refactor: capitalize Month enum members
Co-authored-by: MarkKoz <[email protected]>
Diffstat (limited to 'bot/exts/halloween/hacktober-issue-finder.py')
| -rw-r--r-- | bot/exts/halloween/hacktober-issue-finder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktober-issue-finder.py b/bot/exts/halloween/hacktober-issue-finder.py index 3a9d38d2..b5ad1c4f 100644 --- a/bot/exts/halloween/hacktober-issue-finder.py +++ b/bot/exts/halloween/hacktober-issue-finder.py @@ -26,7 +26,7 @@ class HacktoberIssues(commands.Cog): self.cache_beginner = None self.cache_timer_beginner = datetime.datetime(1, 1, 1) - @in_month(Month.october) + @in_month(Month.OCTOBER) @commands.command() async def hacktoberissues(self, ctx: commands.Context, option: str = "") -> None: """ |