gunicorn/check_py3k.py
2014-06-09 19:41:58 +03:00

7 lines
78 B
Python

import sys
if sys.version_info[0] < 3:
sys.exit(1)
else:
sys.exit(0)