[#4535] - Unwrap max retries exceeded errors - fixing spacing

This commit is contained in:
Bob Strecansky 2017-08-06 10:51:10 -04:00
parent 880c35f3e3
commit 57e664077f

View file

@ -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.