1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Reapply pep8 changes from previous revert.

This commit is contained in:
Michael DeHaan 2013-10-31 19:47:05 -04:00
parent 01ba1e9297
commit b1b5280075

View file

@ -825,7 +825,7 @@ class AnsibleModule(object):
def exit_json(self, **kwargs): def exit_json(self, **kwargs):
''' return from the module, without error ''' ''' return from the module, without error '''
self.add_path_info(kwargs) self.add_path_info(kwargs)
if not kwargs.has_key('changed'): if not 'changed' in kwargs:
kwargs['changed'] = False kwargs['changed'] = False
print self.jsonify(kwargs) print self.jsonify(kwargs)
sys.exit(0) sys.exit(0)