Do not double transform to unicode

This commit is contained in:
Toshio Kuratomi 2015-11-25 07:48:52 -08:00
parent 9cee982a62
commit 056372690f

View file

@ -27,7 +27,7 @@ import uuid
from functools import partial
from inspect import getmembers
from ansible.compat.six import iteritems, string_types, text_type
from ansible.compat.six import iteritems, string_types
from jinja2.exceptions import UndefinedError
@ -311,7 +311,7 @@ class Base:
# and make sure the attribute is of the type it should be
if value is not None:
if attribute.isa == 'string':
value = text_type(to_unicode(value))
value = to_unicode(value)
elif attribute.isa == 'int':
value = int(value)
elif attribute.isa == 'float':