1
0
forked from VimPlug/jedi

fix version check

This commit is contained in:
Matthias Bussonnier
2019-08-13 09:22:19 -07:00
parent f47211c129
commit f06e7f55c0

View File

@@ -27,7 +27,7 @@ is_py35 = is_py3 and sys.version_info[1] >= 5
py_version = int(str(sys.version_info[0]) + str(sys.version_info[1]))
if is_py35:
if sys.version_info[:2] < (3, 5):
"""
A super-minimal shim around listdir that behave like
scandir for the information we need.