webcam-eyetracker
webcam-eyetracker copied to clipboard
line = u'\t'.join(map(unicode, l)) + u'\n'
Enviroment:Ubuntu18.04+python3.7 I get this error.
NameError: name 'unicode' is not defined
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.