From 9e07b2423952c80fd22891eba76135704c5a49b4 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 18 Mar 2012 17:25:22 -0400 Subject: [PATCH] Fix indentation --- lib/ansible/runner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/runner.py b/lib/ansible/runner.py index b1c82153529..aabcbea2326 100755 --- a/lib/ansible/runner.py +++ b/lib/ansible/runner.py @@ -38,9 +38,9 @@ from ansible import errors CLEANUP_FILES = True try: - import json + import json except ImportError: - import simplejson as json + import simplejson as json ################################################ @@ -449,7 +449,7 @@ class Runner(object): new_changed = data2.get('changed', False) data.update(data2) if old_changed or new_changed: - data['changed'] = True + data['changed'] = True return (host, ok, data) else: # copy failed, return orig result without going through 'file' module