I'm using Python 3.6.4 on Windows Machine. I got this error after the download started.
Traceback (most recent call last):
File "lynda-dl.py", line 349, in
main()
File "lynda-dl.py", line 345, in main
lynda.course_download(path=options.output, quality=options.quality)
File "lynda-dl.py", line 172, in course_download
course.course_description(filepath=course_path)
File "D:\lynda-dl\lynda_shared.py", line 145, in course_description
return self._write_to_file(data, description_path)
File "D:\lynda-dl\lynda_shared.py", line 115, in _write_to_file
with open(filename, 'wb', encoding='utf-8') as f:
ValueError: binary mode doesn't take an encoding argument
and i fixed it by removing the encoding='utf-8' like this
I'm using Python 3.6.4 on Windows Machine. I got this error after the download started.
Traceback (most recent call last):
and i fixed it by removing the encoding='utf-8' like this
and it works fine for me.