Skip to content
Snippets Groups Projects
Commit dad43b37 authored by Aurélien Dunand's avatar Aurélien Dunand Committed by Seblu
Browse files

Fix missing colon

parent 30ee0201
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,7 @@ def abspath(path): ...@@ -117,7 +117,7 @@ def abspath(path):
return path return path
elif ptype == "file": elif ptype == "file":
if path.startswith("file://"): if path.startswith("file://"):
path = path[len("file://")] path = path[len("file://"):]
return os.path.abspath(path) return os.path.abspath(path)
else: else:
return None return None
......
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