Fix the wrong refer self in kolla_docker.py

Change-Id: Ia5bcfa7253fc5a471a089339c52883af05623068
Closes-Bug: #1562345
This commit is contained in:
Jeffrey Zhang 2016-03-27 00:37:52 +08:00
parent bd5d38ef3c
commit 1fc0003aee

View File

@ -662,14 +662,14 @@ def main():
# TODO(SamYaple): Replace with required_if when Ansible 2.0 lands
if (module.params.get('action') in ['pull_image', 'start_container']
and not module.params.get('image')):
self.module.fail_json(
module.fail_json(
msg="missing required arguments: image",
failed=True
)
# TODO(SamYaple): Replace with required_if when Ansible 2.0 lands
if (module.params.get('action') != 'pull_image'
and not module.params.get('name')):
self.module.fail_json(
module.fail_json(
msg="missing required arguments: name",
failed=True
)