From 92dfe330218da699ffa4735779a9490f97cecdb6 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 27 Jul 2015 22:32:32 -0400 Subject: [PATCH] defined DEFAULT_DOCKER_API_VERSION to avoid it erroring out before we send the message that docker.py is missing --- lib/ansible/modules/cloud/docker/docker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/cloud/docker/docker.py b/lib/ansible/modules/cloud/docker/docker.py index d6d1ad5e625..58cc5fdc82c 100644 --- a/lib/ansible/modules/cloud/docker/docker.py +++ b/lib/ansible/modules/cloud/docker/docker.py @@ -422,6 +422,7 @@ EXAMPLES = ''' ''' HAS_DOCKER_PY = True +DEFAULT_DOCKER_API_VERSION = None import sys import json