mercurial/statichttprepo.py
changeset 17725 ffd589d4b785
parent 17649 f65c6a5f256c
child 18125 ad194a8ab5c1
--- a/mercurial/statichttprepo.py	Tue Oct 09 01:41:55 2012 +0900
+++ b/mercurial/statichttprepo.py	Tue Oct 09 01:41:55 2012 +0900
@@ -74,6 +74,12 @@
             f = "/".join((self.base, urllib.quote(path)))
             return httprangereader(f, urlopener)
 
+        def join(self, path):
+            if path:
+                return os.path.join(self.base, path)
+            else:
+                return self.base
+
     return statichttpvfs
 
 class statichttppeer(localrepo.localpeer):