##// END OF EJS Templates
localrepo: use the vfs join method to implement the localrepo join method...
Angel Ezquerra -
r23667:f8df9935 default
parent child Browse files
Show More
@@ -765,7 +765,7 b' class localrepository(object):'
765 return None
765 return None
766
766
767 def join(self, f, *insidef):
767 def join(self, f, *insidef):
768 return os.path.join(self.path, f, *insidef)
768 return self.vfs.join(os.path.join(f, *insidef))
769
769
770 def wjoin(self, f, *insidef):
770 def wjoin(self, f, *insidef):
771 return os.path.join(self.root, f, *insidef)
771 return os.path.join(self.root, f, *insidef)
General Comments 0
You need to be logged in to leave comments. Login now