Commit 77f6c074 authored by Arnaud Fontaine's avatar Arnaud Fontaine

Fix typo (a17bb910: py2/py3: Make Products code compatible with both python2 and python3).

parent cbf200d7
......@@ -248,7 +248,7 @@ class ProxyField(ZMIField):
for key, value in result.items():
if isinstance(value, six.binary_type):
# in unicode mode, Formulator UI always uses UTF-8
value = six.text_type(message, 'utf-8')
value = six.text_type(value, 'utf-8')
new_result[key] = value
result = new_result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment