diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-27 16:18:18 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-27 16:18:18 +0100 | 
| commit | 781a7ef60ab03cf1e646a80ecf4cbd70f1532db6 (patch) | |
| tree | 25684e41a1b06b1fa0ae6e0ae4ef04e41ca0d8e3 | |
| parent | 5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e (diff) | |
[lynda] Use 'lstrip' for the subtitles
The newlines at the end are important, they separate each piece of text.
| -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 bfd9b73d2..5dc22da22 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'].strip() +            text = seq_current['Caption'].lstrip()              srt += '%s\r\n%s --> %s\r\n%s' % (str(pos), appear_time, disappear_time, text)          if srt:              return srt | 
