mercurial/statichttprepo.py
changeset 3794 630caaf29815
parent 3791 8643b9f90b51
child 3851 8f18e31c4441
--- a/mercurial/statichttprepo.py
+++ b/mercurial/statichttprepo.py
@@ -25,7 +25,7 @@ def opener(base):
     """return a function that opens files over http"""
     p = base
     def o(path, mode="r"):
-        f = os.path.join(p, urllib.quote(path))
+        f = "/".join((p, urllib.quote(path)))
         return rangereader(f)
     return o