[pbs] No need to escape colon

This commit is contained in:
Sergey M․ 2015-07-22 23:49:55 +06:00
parent ce1bafdce9
commit c7620992d2
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class PBSIE(InfoExtractor):
# Try turning it to 'program - title' naming scheme if possible
alt_title = info.get('program', {}).get('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 {
'id': video_id,