commit: 8b6e17ea0c7e88912997aa5c53a648de35dc85fa Author: Ben Torkington <prmera <AT> gmail <DOT> com> AuthorDate: Wed Mar 4 00:56:39 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 4 03:56:30 2026 +0000 URL: https://gitweb.gentoo.org/proj/mirrorselect.git/commit/?id=8b6e17ea
fix a broken-up string, allow searching the error Signed-off-by: Ben Torkington <prmera <AT> gmail.com> Part-of: https://codeberg.org/gentoo/mirrorselect/pulls/3 Signed-off-by: Sam James <sam <AT> gentoo.org> mirrorselect/selectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirrorselect/selectors.py b/mirrorselect/selectors.py index b48d9e8..3437309 100644 --- a/mirrorselect/selectors.py +++ b/mirrorselect/selectors.py @@ -366,7 +366,7 @@ class Deep: if f is None: self.output.write( - "deeptime(): unable to " + f"connect to host {url_parts.hostname}\n", + f"deeptime(): unable to connect to host {url_parts.hostname}\n", 2, ) return (None, True)
