Do not double transform to unicode

pull/13301/head
Toshio Kuratomi 9 years ago
parent 157230c3e8
commit 1b743436b9

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

Loading…
Cancel
Save