Skip to content
Snippets Groups Projects
Commit 67a2df6a authored by mads's avatar mads
Browse files

bugfix

parent 5356257c
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ def unix_filename(filename):
Filename
"""
filename = os.path.realpath(filename).replace("\\", "/")
filename = os.path.realpath(filename.replace("\\", "/")).replace("\\", "/")
ufn, rest = os.path.splitdrive(filename)
ufn += "/"
for f in rest[1:].split("/"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment