diff options
| author | lkho <llhmtc@gmail.com> | 2016-08-09 15:25:23 +0800 | 
|---|---|---|
| committer | lkho <llhmtc@gmail.com> | 2016-08-10 23:40:50 +0800 | 
| commit | 7f832413d6e4aa5aae4c904c42e0ecf4ae72aaf9 (patch) | |
| tree | cfab387e0ac7a2d6c1ca0c9b29c4eedc10e1108e | |
| parent | b6578166847c5435095346b0225abd758cad6bb4 (diff) | |
Preserve line endings for downloaded subtitle files
| -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)  | 
