From 6db87a5018a0e50a4ee97f4efade2e6e06e606c5 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 30 Mar 2012 21:56:10 -0400 Subject: [PATCH] Minor style fix, update test to match quote fix patch --- lib/ansible/utils.py | 6 +++++- test/playbook1.events | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/ansible/utils.py b/lib/ansible/utils.py index 9d0b68ff8ec..3883f5035e6 100755 --- a/lib/ansible/utils.py +++ b/lib/ansible/utils.py @@ -274,5 +274,9 @@ def parse_kv(args, unquote=True): for x in args: if x.find("=") != -1: k, v = x.split("=") - options[k]=unquote_string(v) if unquote else v + if unquote: + options[k]=unquote_string(v) + else: + v return options + diff --git a/test/playbook1.events b/test/playbook1.events index 71d2f97f3e8..6a0e475b33c 100644 --- a/test/playbook1.events +++ b/test/playbook1.events @@ -277,7 +277,7 @@ [ "127.0.0.1", { - "cmd": "echo this should fire once ", + "cmd": "echo 'this should fire once' ", "rc": 0, "stderr": "", "stdout": "this should fire once" @@ -289,7 +289,7 @@ [ "127.0.0.1", { - "cmd": "echo this should fire once ", + "cmd": "echo 'this should fire once' ", "rc": 0, "stderr": "", "stdout": "this should fire once" @@ -308,7 +308,7 @@ [ "127.0.0.1", { - "cmd": "echo this should fire once also ", + "cmd": "echo 'this should fire once also' ", "rc": 0, "stderr": "", "stdout": "this should fire once also"