mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Another nocover branch
This commit is contained in:
parent
5749986b54
commit
fc0eca0eb8
1 changed files with 2 additions and 1 deletions
|
|
@ -5,7 +5,8 @@ import sys
|
|||
|
||||
PY2 = sys.version_info[0] == 2
|
||||
|
||||
if sys.version_info < (3, 3) and sys.version_info[:2] != (2, 7):
|
||||
if sys.version_info < (3, 3) and \
|
||||
sys.version_info[:2] != (2, 7): # pragma: no cover
|
||||
raise RuntimeError(
|
||||
'vdirsyncer only works on Python versions 2.7.x and 3.3+'
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue