You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/tests/ansible/lib/modules/custom_python_prehistoric_m...

17 lines
310 B
Python

#!/usr/bin/python
# issue #555: I'm a module that cutpastes an old hack.
from ansible.module_utils.basic import AnsibleModule
import sys
reload(sys)
sys.setdefaultencoding('utf8')
def main():
module = AnsibleModule(argument_spec={})
module.exit_json(ok=True)
if __name__ == '__main__':
main()