diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-11 19:03:08 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-11 19:03:08 +0800 |
commit | 3b9323d96e2be7341d2e309124075134ec8a50ca (patch) | |
tree | 935ad70366d1d4ac9ec67bef1fd6b5d673a6da4b /youtube_dl | |
parent | 69d8eeeec56e4b9f4f3e59086a6f0b0820fd37c9 (diff) | |
parent | 7f832413d6e4aa5aae4c904c42e0ecf4ae72aaf9 (diff) |
Merge branch 'pr/#10268' of https://github.com/lkho/youtube-dl into lkho-pr/#10268
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 193f8db9f..fd7577bb8 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1603,7 +1603,7 @@ 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) - with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile: + with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8', newline='') as subfile: subfile.write(sub_data) except (OSError, IOError): self.report_error('Cannot write subtitles file ' + sub_filename) |