Fix for an Issue #900

This commit is contained in:
Miroslav Stampar 2014-11-04 15:15:58 +01:00
parent 4d5b48b2ae
commit 97cc679f9c

View File

@ -2025,7 +2025,7 @@ def getUnicode(value, encoding=None, noneToNull=False):
return NULL
if isListLike(value):
value = list(getUnicode(_, encoding, system, noneToNull) for _ in value)
value = list(getUnicode(_, encoding, noneToNull) for _ in value)
return value
if isinstance(value, unicode):