Make bigpanda module pass python3 sanity check

This commit is contained in:
Michael Scherer 2016-10-17 15:36:09 +02:00 committed by Matt Clay
parent 9cac0b54c6
commit d4157095f3
2 changed files with 3 additions and 2 deletions

View file

@ -170,11 +170,13 @@ def main():
module.exit_json(changed=True, **deployment)
else:
module.fail_json(msg=json.dumps(info))
except Exception, e:
except Exception:
e = get_exception()
module.fail_json(msg=str(e))
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.urls import *
from ansible.module_utils.pycompat24 import get_exception
if __name__ == '__main__':
main()