[lynda] Use 'lstrip' for the subtitles
The newlines at the end are important, they separate each piece of text.
This commit is contained in:
		
							parent
							
								
									5b2949ee0b
								
							
						
					
					
						commit
						781a7ef60a
					
				@ -155,7 +155,7 @@ class LyndaIE(InfoExtractor):
 | 
				
			|||||||
                continue
 | 
					                continue
 | 
				
			||||||
            appear_time = m_current.group('timecode')
 | 
					            appear_time = m_current.group('timecode')
 | 
				
			||||||
            disappear_time = m_next.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)
 | 
					            srt += '%s\r\n%s --> %s\r\n%s' % (str(pos), appear_time, disappear_time, text)
 | 
				
			||||||
        if srt:
 | 
					        if srt:
 | 
				
			||||||
            return srt
 | 
					            return srt
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user