mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
Clean up legacy code
This commit is contained in:
parent
9b14f51a3e
commit
bfa6389b74
@ -421,11 +421,8 @@ def process_info(self, info_dict):
|
|||||||
try:
|
try:
|
||||||
descfn = filename + u'.description'
|
descfn = filename + u'.description'
|
||||||
self.report_writedescription(descfn)
|
self.report_writedescription(descfn)
|
||||||
descfile = open(encodeFilename(descfn), 'wb')
|
with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
|
||||||
try:
|
descfile.write(info_dict['description'])
|
||||||
descfile.write(info_dict['description'].encode('utf-8'))
|
|
||||||
finally:
|
|
||||||
descfile.close()
|
|
||||||
except (OSError, IOError):
|
except (OSError, IOError):
|
||||||
self.trouble(u'ERROR: Cannot write description file ' + descfn)
|
self.trouble(u'ERROR: Cannot write description file ' + descfn)
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user