##// END OF EJS Templates
path: pass `path` to `peer` in `hg fetch`...
marmoute -
r50626:c130d2d8 default
parent child Browse files
Show More
@@ -108,9 +108,9 b" def fetch(ui, repo, source=b'default', *"
108 )
108 )
109 )
109 )
110
110
111 path = urlutil.get_unique_pull_path(b'fetch', repo, ui, source)[0]
111 path = urlutil.get_unique_pull_path_obj(b'fetch', ui, source)
112 other = hg.peer(repo, opts, path)
112 other = hg.peer(repo, opts, path)
113 ui.status(_(b'pulling from %s\n') % urlutil.hidepassword(path))
113 ui.status(_(b'pulling from %s\n') % urlutil.hidepassword(path.loc))
114 revs = None
114 revs = None
115 if opts[b'rev']:
115 if opts[b'rev']:
116 try:
116 try:
General Comments 0
You need to be logged in to leave comments. Login now