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
This commit is contained in:
parent
c61d04dd1f
commit
8efce857b8
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue