mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
7 lines
78 B
Python
7 lines
78 B
Python
import sys
|
|
|
|
if sys.version_info[0] < 3:
|
|
sys.exit(1)
|
|
else:
|
|
sys.exit(0)
|