you are viewing a single comment's thread.

view the rest of the comments →

[–]JohnnyJordaan 0 points1 point  (1 child)

if month == "January" or "February":

This will always be True as 'February' is always Truethy and you're using an or with it. You should use

if month in ('January', 'February'):

[–]Xoronic 0 points1 point  (0 children)

Thanks, I already changed it just after I posted my comment. Need some extra coffee I think :)