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):
''' return from the module, without error '''
self.add_path_info(kwargs)
if not kwargs.has_key('changed'):
if not 'changed' in kwargs:
kwargs['changed'] = False
print self.jsonify(kwargs)
sys.exit(0)