Ver Fonte

less clunky if statement

fnord há 10 anos atrás
pai
commit
0eacd2aaae
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      youtube_dl/extractor/pbs.py

+ 2 - 2
youtube_dl/extractor/pbs.py

@@ -249,8 +249,8 @@ class PBSIE(InfoExtractor):
 
         # video.pbs.org video.pbs.org/videoInfo/... frequently provides an obscure 'title' value, like
         # 'Full Episode', 'Episode 5', etc. prepend program->title
-        alt_title = info.get('program', {}).get('title', '')
-        if alt_title != '':
+        alt_title = info.get('program', {}).get('title')
+        if alt_title:
             info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-\:]+', '', info['title'])
 
         return {