Darshit Shah wrote:

+# If using Python 2, ensure that at least version 2.7 is used. Older versions
+# are not supported
+if not PYTHON3 or sys.version_info[1] < 7:
+    print("Python version must be atleast 2.7. Exiting.")

Shouldn't this be:
  if not PYTHON3 and sys.version_info[1] < 7:

--
--gv

Reply via email to