##// END OF EJS Templates
statichttprepo: fix calls on '/' URI (issue 747)
Paul Bx -
r5315:121f961b default
parent child Browse files
Show More
@@ -33,7 +33,7 b' class statichttprepository(localrepo.loc'
33 self._url = path
33 self._url = path
34 self.ui = ui
34 self.ui = ui
35
35
36 self.path = (path + "/.hg")
36 self.path = path.rstrip('/') + "/.hg"
37 self.opener = opener(self.path)
37 self.opener = opener(self.path)
38 # find requirements
38 # find requirements
39 try:
39 try:
General Comments 0
You need to be logged in to leave comments. Login now