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-05 17:26:01 +0300
committerBob Strecansky <bob.strecansky@gmail.com>2017-08-05 17:26:01 +0300
commit3cc94798b6452f652b898916f5b710293e44f6b4 (patch)
treefbc16015f95b89d5ad70e14d240563b3962cc7e6
parent959d72feb035dd49efc32f8f39f92e79ea32b2c3 (diff)
[#4535] - Unwrap max retries exceeded errors
-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 7316066da..dc3080dcf 100644
--- a/acme/acme/client.py
+++ b/acme/acme/client.py
@@ -650,7 +650,7 @@ class ClientNetwork(object): # pylint: disable=too-many-instance-attributes
if m is None:
raise # pragma: no cover
else:
- host, path, err_no, err_msg = m.groups()
+ host, path, _err_no, err_msg = m.groups()
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