Make mqtt pass python3 sanity tests

pull/18777/head
Michael Scherer 8 years ago committed by Matt Clay
parent 3c1dea1933
commit b902ea297f

@ -156,11 +156,13 @@ def main():
hostname=server,
port=port,
auth=auth)
except Exception, e:
except Exception:
e = get_exception()
module.fail_json(msg="unable to publish to MQTT broker %s" % (e))
module.exit_json(changed=False, topic=topic)
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.pycompat24 import get_exception
main()

@ -66,4 +66,3 @@
/network/openvswitch_port.py
/notification/jabber.py
/notification/mail.py
/notification/mqtt.py

Loading…
Cancel
Save