mercurial/util.py
changeset 1101 2cf5c8a4eae5
parent 1090 1bca39b85615
child 1102 c81d264cd17d
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -243,10 +243,6 @@ def opener(base):
     """
     p = base
     def o(path, mode="r"):
-        if p.startswith("http://"):
-            f = os.path.join(p, urllib.quote(path))
-            return httprangereader.httprangereader(f)
-
         f = os.path.join(p, path)
 
         mode += "b" # for that other OS