Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 6b48e60

Browse files
committed
Check for right version
1 parent f6e9b32 commit 6b48e60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openbazaard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ def shutdown():
205205

206206
if __name__ == "__main__":
207207

208-
if sys.version_info < (2, 12):
209-
print "You must use python 2.9 or greater"
208+
if sys.version_info < (2, 7, 9):
209+
print "You must use python 2.7.9 or greater"
210210
sys.exit(0)
211211

212212
# pylint: disable=anomalous-backslash-in-string

0 commit comments

Comments
 (0)