Mercurial > hg
changeset 46960:69359c91dc43
debugssl: use `get_unique_pull_path`
Let's move this code to the new API.
Differential Revision: https://phab.mercurial-scm.org/D10427
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 14 Apr 2021 21:15:22 +0200 |
parents | 9e021cffb356 |
children | d7b36a4e03de |
files | mercurial/debugcommands.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/debugcommands.py Wed Apr 14 21:11:39 2021 +0200 +++ b/mercurial/debugcommands.py Wed Apr 14 21:15:22 2021 +0200 @@ -3654,7 +3654,9 @@ ) source = b"default" - source, branches = urlutil.parseurl(ui.expandpath(source)) + source, branches = urlutil.get_unique_pull_path( + b'debugssl', repo, ui, source + ) url = urlutil.url(source) defaultport = {b'https': 443, b'ssh': 22}