webcam-eyetracker icon indicating copy to clipboard operation
webcam-eyetracker copied to clipboard

line = u'\t'.join(map(unicode, l)) + u'\n'

Open hehichens opened this issue 4 years ago • 1 comments

Enviroment:Ubuntu18.04+python3.7 I get this error.

NameError: name 'unicode' is not defined

hehichens avatar Apr 14 '20 14:04 hehichens

from builtins import str and then replace line = u'\t'.join(map(unicode, l)) + u'\n' with line = u'\t'.join(map(str, l)) + u'\n'

Probably not only in one place.

DaddyWesker avatar Feb 04 '21 08:02 DaddyWesker