fixes the now-incorrect module for ApiError

https://github.com/dotcloud/docker-py/blob/0.3.2/docker/errors.py
- ApiError is now(0.3.2) under the docker.errors
pull/7925/head
Stephen Paul Suarez 10 years ago
parent 375edbd087
commit dfabf2707a

@ -235,7 +235,7 @@ def main():
module.exit_json(failed=failed, changed=manager.has_changed(), msg=msg, image_id=image_id)
except docker.client.APIError as e:
except docker.errors.APIError as e:
module.exit_json(failed=True, changed=manager.has_changed(), msg="Docker API error: " + e.explanation)
except RequestException as e:

Loading…
Cancel
Save