1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix syntax error

This commit is contained in:
chouseknecht 2016-04-21 18:22:33 -04:00
parent 48a2165310
commit 8dc04770b6

View file

@ -38,7 +38,7 @@ try:
from docker.tls import TLSConfig
from docker.constants import DEFAULT_TIMEOUT_SECONDS, DEFAULT_DOCKER_API_VERSION
from docker.utils.types import Ulimit, LogConfig
except ImportError as exc:
except ImportError, exc:
HAS_DOCKER_ERROR = str(exc)
HAS_DOCKER_PY = False