Skip to content

Commit

Permalink
Fix python 3.4 detection to work for newer pythons.
Browse files Browse the repository at this point in the history
  • Loading branch information
freiheit committed Nov 6, 2016
1 parent a6bf20c commit f03b4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feed2discord.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from dateutil.parser import parse as parse_datetime
from urllib.parse import urljoin

if not sys.version_info[:2] == (3, 4):
if not sys.version_info[:2] >= (3, 4):
print("Error: requires python 3.4 or newer")
exit(1)

Expand Down

0 comments on commit f03b4e5

Please sign in to comment.