1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

appveyor fix #1 - os.sep

This commit is contained in:
Shlomi Fish 2019-07-14 08:58:46 +03:00
parent c13b8587fc
commit 0aad4261d8

View file

@ -14,7 +14,8 @@ for d, _, files in os.walk("pysollib"):
for f in files:
if re.search("\\.py$", f):
module_names.append(
(d + "/" + re.sub("\\.py$", "", f)).replace("/", "."))
(d + "/" + re.sub("\\.py$", "", f))
.replace("/", ".").replace(os.sep, "."))
module_names.sort()
for module_name in module_names: