diff -r d6b6a15cc7c6 -r 2cf5c8a4eae5 mercurial/util.py --- a/mercurial/util.py Sat Aug 27 15:35:37 2005 -0700 +++ b/mercurial/util.py Sat Aug 27 16:28:53 2005 -0700 @@ -243,10 +243,6 @@ """ 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