We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab68f9 commit c4f373eCopy full SHA for c4f373e
python/network/docker_image.py
@@ -175,7 +175,7 @@ def ping(self, scope=None):
175
logger.debug("Authentication OK, ping result=%r", ping_response.json())
176
return ping_response.json()
177
178
- raise ValueError("Unexpected authentication header kind %r", auth_header)
+ raise ValueError("Unexpected authentication header kind {}".format(repr(auth_header)))
179
180
logger.error("Unexpected ping response code %d", ping_response.status_code)
181
raise ValueError("Unexpected ping response")
0 commit comments