Fix indentation

This commit is contained in:
Michael DeHaan
2012-08-11 18:39:09 -04:00
parent 67301c1015
commit 75bbd73173
3 changed files with 4 additions and 4 deletions

View File

@@ -91,8 +91,8 @@ class CommandModule(AnsibleModule):
params['chdir'] = None
params['shell'] = False
if args.find("#USE_SHELL") != -1:
args = args.replace("#USE_SHELL", "")
params['shell'] = True
args = args.replace("#USE_SHELL", "")
params['shell'] = True
check_args = shlex.split(args)
for x in check_args: