1
0
Fork 0
mirror of synced 2024-05-20 12:32:26 +12:00

Lowercased the month to match the months dictionary

This commit is contained in:
phxntxm 2016-07-18 18:30:52 -05:00
parent 9860351caa
commit d1db6f2ec8

View file

@ -42,7 +42,7 @@ class Core:
if month is None:
month = datetime.date.today().month
else:
month = months.get(month)
month = months.get(month.lower())
if month is None:
await self.bot.say("Please provide a valid Month!")
return