aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/lynda.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-27 16:18:18 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-27 16:18:18 +0100
commit781a7ef60ab03cf1e646a80ecf4cbd70f1532db6 (patch)
tree25684e41a1b06b1fa0ae6e0ae4ef04e41ca0d8e3 /youtube_dl/extractor/lynda.py
parent5b2949ee0b8e84ae6e4e2b346d9a91e4b5c0962e (diff)
downloadyoutube-dl-781a7ef60ab03cf1e646a80ecf4cbd70f1532db6.zip
youtube-dl-781a7ef60ab03cf1e646a80ecf4cbd70f1532db6.tar.gz
youtube-dl-781a7ef60ab03cf1e646a80ecf4cbd70f1532db6.tar.bz2
[lynda] Use 'lstrip' for the subtitles
The newlines at the end are important, they separate each piece of text.
Diffstat (limited to 'youtube_dl/extractor/lynda.py')
-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 bfd9b73..5dc22da 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