sys.exit removal for cloud/google/gce_img.py and cloud/google/gce_tag.py

This commit is contained in:
Matt Martz 2015-10-05 13:23:00 -05:00 committed by Matt Clay
parent 7cb0d86c27
commit e99a202ac5
2 changed files with 0 additions and 2 deletions

View file

@ -201,7 +201,6 @@ def main():
changed = delete_image(gce, name, module)
module.exit_json(changed=changed, name=name)
sys.exit(0)
# import module snippets
from ansible.module_utils.basic import *

View file

@ -219,7 +219,6 @@ def main():
changed, tags_changed = remove_tags(gce, module, instance_name, tags)
module.exit_json(changed=changed, instance_name=instance_name, tags=tags_changed, zone=zone)
sys.exit(0)
# import module snippets
from ansible.module_utils.basic import *