mercurial/statichttprepo.py
changeset 17649 f65c6a5f256c
parent 17193 1d710fe5ee0e
child 17725 ffd589d4b785
--- a/mercurial/statichttprepo.py	Mon Aug 13 21:25:48 2012 +0900
+++ b/mercurial/statichttprepo.py	Fri Aug 31 02:06:29 2012 +0900
@@ -64,7 +64,7 @@
     urlopener = url.opener(ui, authinfo)
     urlopener.add_handler(byterange.HTTPRangeHandler())
 
-    class statichttpopener(scmutil.abstractopener):
+    class statichttpvfs(scmutil.abstractvfs):
         def __init__(self, base):
             self.base = base
 
@@ -74,7 +74,7 @@
             f = "/".join((self.base, urllib.quote(path)))
             return httprangereader(f, urlopener)
 
-    return statichttpopener
+    return statichttpvfs
 
 class statichttppeer(localrepo.localpeer):
     def local(self):