# HG changeset patch # User Felipe Resende # Date 2024-03-16 21:37:07 # Node ID a2f1d97e5284b60b3a16cb071ccc015f6721bc29 # Parent e7bbeaa4f0a72d7f656b87864d0826bcd85fea26 sshpeer: fix path when handling invalid url exception In 73ed1d13c0bf the code was refactored but the error handling seems to have been missed (or maybe the object shoud have implemented __bytes__) diff --git a/mercurial/sshpeer.py b/mercurial/sshpeer.py --- a/mercurial/sshpeer.py +++ b/mercurial/sshpeer.py @@ -640,7 +640,7 @@ def make_peer( """ u = urlutil.url(path.loc, parsequery=False, parsefragment=False) if u.scheme != b'ssh' or not u.host or u.path is None: - raise error.RepoError(_(b"couldn't parse location %s") % path) + raise error.RepoError(_(b"couldn't parse location %s") % path.loc) urlutil.checksafessh(path.loc)