|
@@ -1603,6 +1603,8 @@ class YoutubeDL(object):
|
|
|
self.to_screen('[info] Video subtitle %s.%s is already_present' % (sub_lang, sub_format))
|
|
|
else:
|
|
|
self.to_screen('[info] Writing video subtitles to: ' + sub_filename)
|
|
|
+ # Use newline='' to prevent conversion of newline characters
|
|
|
+ # See https://github.com/rg3/youtube-dl/issues/10268
|
|
|
with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8', newline='') as subfile:
|
|
|
subfile.write(sub_data)
|
|
|
except (OSError, IOError):
|