fixing errors with utf-8 values

removing utf-8 stanza

changing cast to binary_type instead

using to_unicode
This commit is contained in:
Charles Paul 2015-11-23 20:24:08 +09:00 committed by Toshio Kuratomi
parent b69942a6d2
commit 9cee982a62

View file

@ -36,6 +36,7 @@ from ansible.parsing.dataloader import DataLoader
from ansible.playbook.attribute import Attribute, FieldAttribute
from ansible.utils.boolean import boolean
from ansible.utils.vars import combine_vars, isidentifier
from ansible.utils.unicode import to_unicode
BASE_ATTRIBUTES = {}
@ -310,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(value)
value = text_type(to_unicode(value))
elif attribute.isa == 'int':
value = int(value)
elif attribute.isa == 'float':