From: Jaime Marquínez Ferrándiz Date: Fri, 27 Feb 2015 15:18:18 +0000 (+0100) Subject: [lynda] Use 'lstrip' for the subtitles X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=781a7ef60ab03cf1e646a80ecf4cbd70f1532db6;p=youtube-dl [lynda] Use 'lstrip' for the subtitles The newlines at the end are important, they separate each piece of text. --- 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