--- 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):