Commit dad43b37 authored by Aurélien Dunand's avatar Aurélien Dunand Committed by Seblu
Browse files

Fix missing colon

parent 30ee0201
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -117,7 +117,7 @@ def abspath(path):
        return path
    elif ptype == "file":
        if path.startswith("file://"):
            path = path[len("file://")]
            path = path[len("file://"):]
        return os.path.abspath(path)
    else:
        return None