diff options
author | Sergey M. <dstftw@gmail.com> | 2015-02-27 20:56:54 +0600 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2015-02-27 20:56:54 +0600 |
commit | 5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e (patch) | |
tree | 25c0826d2a997dbf91c3c4f40187a52c587e9d5f /youtube_dl | |
parent | a0d646135aaf417e0aa000419974c676335d164a (diff) | |
parent | 0eba1e178230a88d1b316f54edbb671d216c1d02 (diff) |
Merge pull request #5076 from Ftornik/Lynda-subtitles-hotfix
[lynda] Fixed subtitles broken file
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/lynda.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py index e7e9d80de..bfd9b73d2 100644 --- a/youtube_dl/extractor/lynda.py +++ b/youtube_dl/extractor/lynda.py @@ -155,7 +155,7 @@ class LyndaIE(InfoExtractor): continue appear_time = m_current.group('timecode') disappear_time = m_next.group('timecode') - text = seq_current['Caption'] + text = seq_current['Caption'].strip() srt += '%s\r\n%s --> %s\r\n%s' % (str(pos), appear_time, disappear_time, text) if srt: return srt |