statichttprepo: fix calls on '/' URI (issue 747)
authorPaul Bx <pb@e-scribe.com>
Sat, 22 Sep 2007 18:37:35 +0200
changeset 5315 121f961b358c
parent 5307 5b0b0834419c
child 5316 598dae804a5f
statichttprepo: fix calls on '/' URI (issue 747)
mercurial/statichttprepo.py
--- a/mercurial/statichttprepo.py	Fri Sep 14 22:47:15 2007 +0200
+++ b/mercurial/statichttprepo.py	Sat Sep 22 18:37:35 2007 +0200
@@ -33,7 +33,7 @@
         self._url = path
         self.ui = ui
 
-        self.path = (path + "/.hg")
+        self.path = path.rstrip('/') + "/.hg"
         self.opener = opener(self.path)
         # find requirements
         try: