Show More
@@ -197,7 +197,7 def issvnurl(ui, url): | |||
|
197 | 197 | proto = 'file' |
|
198 | 198 | path = os.path.abspath(url) |
|
199 | 199 | if proto == 'file': |
|
200 | path = path.replace(os.sep, '/') | |
|
200 | path = util.pconvert(path) | |
|
201 | 201 | check = protomap.get(proto, lambda *args: False) |
|
202 | 202 | while '/' in path: |
|
203 | 203 | if check(ui, path, proto): |
General Comments 0
You need to be logged in to leave comments.
Login now