mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	less clunky if statement
This commit is contained in:
		@@ -249,8 +249,8 @@ class PBSIE(InfoExtractor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        # video.pbs.org video.pbs.org/videoInfo/... frequently provides an obscure 'title' value, like
 | 
					        # video.pbs.org video.pbs.org/videoInfo/... frequently provides an obscure 'title' value, like
 | 
				
			||||||
        # 'Full Episode', 'Episode 5', etc. prepend program->title
 | 
					        # 'Full Episode', 'Episode 5', etc. prepend program->title
 | 
				
			||||||
        alt_title = info.get('program', {}).get('title', '')
 | 
					        alt_title = info.get('program', {}).get('title')
 | 
				
			||||||
        if alt_title != '':
 | 
					        if alt_title:
 | 
				
			||||||
            info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-\:]+', '', info['title'])
 | 
					            info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-\:]+', '', info['title'])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user