##// END OF EJS Templates
peer: pass the `path` to the statichttp peer...
marmoute -
r50657:c4d587fa default
parent child Browse files
Show More
@@ -262,5 +262,5 b' class statichttprepository('
262 def make_peer(ui, path, create, intents=None, createopts=None):
262 def make_peer(ui, path, create, intents=None, createopts=None):
263 if create:
263 if create:
264 raise error.Abort(_(b'cannot create new static-http repository'))
264 raise error.Abort(_(b'cannot create new static-http repository'))
265 path = path.loc
265 url = path.loc[7:]
266 return statichttprepository(ui, path[7:]).peer()
266 return statichttprepository(ui, url).peer(path=path)
General Comments 0
You need to be logged in to leave comments. Login now