Remove unnecessary unicode conversions from parse_kv

Fixes #8425
pull/8434/head
James Cammarata 10 years ago
parent 642b183fb6
commit 6d94ae64ec

@ -31,7 +31,6 @@ import sys
import pipes
import jinja2
import subprocess
import shlex
import getpass
import ansible.constants as C

@ -694,8 +694,6 @@ def parse_kv(args):
''' convert a string of key/value items to a dict '''
options = {}
if args is not None:
# attempting to split a unicode here does bad things
args = args.encode('utf-8')
try:
vargs = split_args(args)
except ValueError, ve:
@ -703,7 +701,6 @@ def parse_kv(args):
raise errors.AnsibleError("error parsing argument string, try quoting the entire line.")
else:
raise
vargs = [x.decode('utf-8') for x in vargs]
for x in vargs:
if "=" in x:
k, v = x.split("=",1)

@ -40,3 +40,4 @@
gather_facts: true
tasks:
- debug: msg='Unicode is a good thing ™'
- debug: msg=АБВГД

@ -165,6 +165,8 @@ class TestUtils(unittest.TestCase):
def test_parse_kv_basic(self):
self.assertEqual(ansible.utils.parse_kv('a=simple b="with space" c="this=that"'),
{'a': 'simple', 'b': 'with space', 'c': 'this=that'})
self.assertEqual(ansible.utils.parse_kv('msg=АБВГД'),
{'msg': 'АБВГД'})
def test_jsonify(self):

Loading…
Cancel
Save