mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
[#4535] - Unwrap max retries exceeded errors - fixing spacing
This commit is contained in:
parent
880c35f3e3
commit
57e664077f
1 changed files with 1 additions and 1 deletions
|
|
@ -650,7 +650,7 @@ class ClientNetwork(object): # pylint: disable=too-many-instance-attributes
|
|||
raise # pragma: no cover
|
||||
else:
|
||||
host, path, _err_no, err_msg = m.groups()
|
||||
raise ValueError("Requesting {0}{1}: {2}".format(host, path, err_msg))
|
||||
raise ValueError("Requesting {0}{1}:{2}".format(host, path, err_msg))
|
||||
|
||||
# If content is DER, log the base64 of it instead of raw bytes, to keep
|
||||
# binary data out of the logs.
|
||||
|
|
|
|||
Loading…
Reference in a new issue