diagnostic: fix malformed print format string

pull/174/head
nicolas pelletier 2023-04-26 20:15:48 +02:00
parent a196e4a2fa
commit 213c3fd36f
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ def check_server_listening(spinner):
try:
r = requests.get(url)
except requests.exceptions.ConnectionError:
return (False, 'Can\'t connect to {}').format(url)
return (False, 'Can\'t connect to {}'.format(url))
if '/error_page' in r.url:
o = urlparse(r.url)