Skip to content
Snippets Groups Projects
Commit ebf1a075 authored by Matt Harbison's avatar Matt Harbison
Browse files

statichttprepo: fix the vfs.join() method to match the base class definition

Flagged by PyCharm.  The superclass implementation raised NotImplementedError.
parent 174290ad
3 merge requests!618Draft: 6.5rc0,!541Draft: sslutil: set context security level for legacy tls testing (issue6760),!477Miscellaneous small cleanup
......@@ -138,5 +138,5 @@
f = b"/".join((self.base, urlreq.quote(path)))
return httprangereader(f, urlopener)
def join(self, path):
def join(self, path, *insidef):
if path:
......@@ -142,5 +142,5 @@
if path:
return pathutil.join(self.base, path)
return pathutil.join(self.base, path, *insidef)
else:
return self.base
......
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