##// END OF EJS Templates
statichttprepo: fix the vfs.join() method to match the base class definition...
Matt Harbison -
r51173:ebf1a075 default
parent child Browse files
Show More
@@ -138,9 +138,9 b' def build_opener(ui, authinfo):'
138 f = b"/".join((self.base, urlreq.quote(path)))
138 f = b"/".join((self.base, urlreq.quote(path)))
139 return httprangereader(f, urlopener)
139 return httprangereader(f, urlopener)
140
140
141 def join(self, path):
141 def join(self, path, *insidef):
142 if path:
142 if path:
143 return pathutil.join(self.base, path)
143 return pathutil.join(self.base, path, *insidef)
144 else:
144 else:
145 return self.base
145 return self.base
146
146
General Comments 0
You need to be logged in to leave comments. Login now