# HG changeset patch # User Matt Harbison # Date 2017-08-29 20:38:10 # Node ID 3c3066367d72344935aabf9606a5b40e9950b5e7 # Parent 5707bfe04deb953cd4d031c2ff099ac6a2bff6d2 debugssl: allow a URL to be specified without a local repository This was the original intent, but I bungled the logic. Otherwise if there is a certificate chain issue, the repository can't be cloned in order for there to be a repo object. I think I missed this case because I was inside of a Mercurial clone as I was originally developing and testing this. diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -2078,10 +2078,10 @@ def debugssl(ui, repo, source=None, **op 'Windows')) if not source: + if not repo: + raise error.Abort(_("there is no Mercurial repository here, and no " + "server specified")) source = "default" - elif not repo: - raise error.Abort(_("there is no Mercurial repository here, and no " - "server specified")) source, branches = hg.parseurl(ui.expandpath(source)) url = util.url(source)