mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-15 02:54:09 -04:00
appveyor fix #1 - os.sep
This commit is contained in:
parent
1c91b58342
commit
6bc3220045
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ for d, _, files in os.walk("pysollib"):
|
||||||
for f in files:
|
for f in files:
|
||||||
if re.search("\\.py$", f):
|
if re.search("\\.py$", f):
|
||||||
module_names.append(
|
module_names.append(
|
||||||
(d + "/" + re.sub("\\.py$", "", f)).replace("/", "."))
|
(d + "/" + re.sub("\\.py$", "", f))
|
||||||
|
.replace("/", ".").replace(os.sep, "."))
|
||||||
|
|
||||||
module_names.sort()
|
module_names.sort()
|
||||||
for module_name in module_names:
|
for module_name in module_names:
|
||||||
|
|
Loading…
Add table
Reference in a new issue