localrepo: use vfs.reljoin rather than os.path.join in the localrepository class
The removes the last remaining usage of os.path.join inside teh localrepository
class.
--- a/mercurial/localrepo.py Wed Nov 26 19:28:11 2014 -0500
+++ b/mercurial/localrepo.py Fri Jan 02 13:30:38 2015 +0100
@@ -768,7 +768,7 @@
return self.vfs.join(os.path.join(f, *insidef))
def wjoin(self, f, *insidef):
- return os.path.join(self.root, f, *insidef)
+ return self.vfs.reljoin(self.root, f, *insidef)
def file(self, f):
if f[0] == '/':