From 0eacd2aaae7d4150d9cf4e1dd8ffc2ebc7ab030b Mon Sep 17 00:00:00 2001 From: fnord Date: Sun, 19 Jul 2015 13:59:12 -0500 Subject: [PATCH] less clunky if statement --- youtube_dl/extractor/pbs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index cccff270b..ccbe2a9f3 100644 --- a/youtube_dl/extractor/pbs.py +++ b/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 {