whops, its supported starting with python 3.6, not python 3.5

This commit is contained in:
Ronny Pfannschmidt
2018-06-19 23:15:13 +02:00
parent abbf73ad1a
commit 603df1ea1c
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ PY35 = sys.version_info[:2] >= (3, 5)
PY36 = sys.version_info[:2] >= (3, 6)
MODULE_NOT_FOUND_ERROR = "ModuleNotFoundError" if PY36 else "ImportError"
if PY35:
if PY36:
from pathlib import Path
else:
from pathlib2 import Path