From 0a1657080b7c305d2db0d2432115adb4b7608df6 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 11 May 2013 17:23:45 -0400 Subject: [PATCH] Indentation fix --- lib/ansible/utils/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/utils/__init__.py b/lib/ansible/utils/__init__.py index ab143ff049..366bb58fec 100644 --- a/lib/ansible/utils/__init__.py +++ b/lib/ansible/utils/__init__.py @@ -646,9 +646,9 @@ def compile_when_to_only_if(expression): #tcopy[i] = "%s('''%s''')" % (cast, t) t2 = t.strip() if (t2[0].isalpha() or t2[0] == '$') and cast == 'str' and t2 != 'in': - tcopy[i] = "'%s'" % (t) + tcopy[i] = "'%s'" % (t) else: - tcopy[i] = t + tcopy[i] = t result = " ".join(tcopy) return result