mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-07-02 12:02:52 -05:00
[pbs] No need to escape colon
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user