A recert merge to mundaneitems data brought a special quote [’] which broke mundane items with the error
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 24: ordinal not in range(128)
This needs to be better handled. One options- implement something like this in the importer:
def is_ascii(s):
return all(ord(c) < 128 for c in s)
A recert merge to mundaneitems data brought a special quote [’] which broke mundane items with the error UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 24: ordinal not in range(128)
This needs to be better handled. One options- implement something like this in the importer: