Reapply pep8 changes from previous revert.
This commit is contained in:
parent
01ba1e9297
commit
b1b5280075
1 changed files with 20 additions and 20 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue