Skip to content
Snippets Groups Projects
Commit a41fd730f230 authored by Matt Mackall's avatar Matt Mackall
Browse files

scmutil: backout 83785bb56062 (issue3643)

parent 16ec37411db5
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,6 @@
if expand:
base = os.path.realpath(util.expandpath(base))
self.base = base
self.basesep = self.base + os.sep
self._setmustaudit(audit)
self.createmode = None
self._trustnlink = None
......@@ -332,8 +331,9 @@
def join(self, path):
if path:
return path.startswith('/') and path or (self.basesep + path)
return self.base
return os.path.join(self.base, path)
else:
return self.base
opener = vfs
......
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