mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
fixup! Refine Python 3 warning
This commit is contained in:
parent
2952ea8b15
commit
9d2d35f21a
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ except ImportError: # pragma: no cover
|
||||||
|
|
||||||
def _check_python_version(): # pragma: no cover
|
def _check_python_version(): # pragma: no cover
|
||||||
import sys
|
import sys
|
||||||
if sys.version_info[0] < (3, 3):
|
if sys.version_info < (3, 3, 0):
|
||||||
print('vdirsyncer requires at least Python 3.3.')
|
print('vdirsyncer requires at least Python 3.3.')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue