less clunky if statement

This commit is contained in:
fnord 2015-07-19 13:59:12 -05:00
parent a5dd9a0c5d
commit 0eacd2aaae
1 changed files with 2 additions and 2 deletions

View File

@ -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 {