Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Strecansky <bob.strecansky@gmail.com>2017-08-06 17:51:10 +0300
committerBob Strecansky <bob.strecansky@gmail.com>2017-08-06 17:51:10 +0300
commit57e664077fdf006aede83c7934470787e2ee5d90 (patch)
tree7600cff6f615295352d2a38b8ce9708c306c8c98
parent880c35f3e3f8d1788024d40c6540d9d9ee1f7f01 (diff)
[#4535] - Unwrap max retries exceeded errors - fixing spacing
-rw-r--r--acme/acme/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/acme/acme/client.py b/acme/acme/client.py
index ee4cf7985..2e07d34d7 100644
--- a/acme/acme/client.py
+++ b/acme/acme/client.py
@@ -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.