summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M. <dstftw@gmail.com>2015-02-27 20:56:54 +0600
committerSergey M. <dstftw@gmail.com>2015-02-27 20:56:54 +0600
commit5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e (patch)
tree25c0826d2a997dbf91c3c4f40187a52c587e9d5f
parenta0d646135aaf417e0aa000419974c676335d164a (diff)
parent0eba1e178230a88d1b316f54edbb671d216c1d02 (diff)
downloadyoutube-dl-5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e.tar.gz
youtube-dl-5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e.tar.xz
youtube-dl-5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e.zip
Merge pull request #5076 from Ftornik/Lynda-subtitles-hotfix
[lynda] Fixed subtitles broken file
-rw-r--r--youtube_dl/extractor/lynda.py2
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