summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/docker_common.py
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-01-28 01:39:40 -0800
committerGitHub <noreply@github.com>2017-01-28 01:39:40 -0800
commite2c0b375d3c74ea14b82caf6771d0b94135bd4aa (patch)
tree38db84bedcea5a90ce964dd751709b6908b269d5 /lib/ansible/module_utils/docker_common.py
parentd0d1158c5ef7c1f822e622bebd80eb9471285b0b (diff)
downloadansible-e2c0b375d3c74ea14b82caf6771d0b94135bd4aa.tar.gz
PEP 8 cleanup. (#20790)
* PEP 8 E115 cleanup. * PEP 8 E131 cleanup.
Diffstat (limited to 'lib/ansible/module_utils/docker_common.py')
-rw-r--r--lib/ansible/module_utils/docker_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/docker_common.py b/lib/ansible/module_utils/docker_common.py
index 13bc7a6af6..4c2c8fe45b 100644
--- a/lib/ansible/module_utils/docker_common.py
+++ b/lib/ansible/module_utils/docker_common.py
@@ -330,7 +330,7 @@ class AnsibleDockerClient(Client):
msg = "You asked for verification that Docker host name matches %s. The actual hostname is %s. " \
"Most likely you need to set DOCKER_TLS_HOSTNAME or pass tls_hostname with a value of %s. " \
"You may also use TLS without verification by setting the tls parameter to true." \
- % (self.auth_params['tls_hostname'], match.group(1))
+ % (self.auth_params['tls_hostname'], match.group(1))
self.fail(msg)
self.fail("SSL Exception: %s" % (error))