Seeing if using decode explicity this helps py3 problem
This commit is contained in:
parent
6db1d0b031
commit
f799ff3af1
|
@ -484,7 +484,7 @@ def unicode_(data):
|
|||
import sys
|
||||
|
||||
if sys.version_info.major < 3:
|
||||
return unicode(data)
|
||||
return data.decode('UTF-8')
|
||||
return data
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue