equal
deleted
inserted
replaced
21 class sshrepository(wireproto.wirerepository): |
21 class sshrepository(wireproto.wirerepository): |
22 def __init__(self, ui, path, create=0): |
22 def __init__(self, ui, path, create=0): |
23 self._url = path |
23 self._url = path |
24 self.ui = ui |
24 self.ui = ui |
25 |
25 |
26 u = url.url(path, parse_query=False, parse_fragment=False) |
26 u = url.url(path, parsequery=False, parsefragment=False) |
27 if u.scheme != 'ssh' or not u.host or u.path is None: |
27 if u.scheme != 'ssh' or not u.host or u.path is None: |
28 self._abort(error.RepoError(_("couldn't parse location %s") % path)) |
28 self._abort(error.RepoError(_("couldn't parse location %s") % path)) |
29 |
29 |
30 self.user = u.user |
30 self.user = u.user |
31 if u.passwd is not None: |
31 if u.passwd is not None: |