From 57e664077fdf006aede83c7934470787e2ee5d90 Mon Sep 17 00:00:00 2001 From: Bob Strecansky Date: Sun, 6 Aug 2017 10:51:10 -0400 Subject: [PATCH] [#4535] - Unwrap max retries exceeded errors - fixing spacing --- acme/acme/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.