youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c7620992d20973320fddb85f936f5dc602d1d708
parent ce1bafdce9f7f9e19c172b319a5ae75d1c85759b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 22 Jul 2015 23:49:55 +0600

[pbs] No need to escape colon

Diffstat:
Myoutube_dl/extractor/pbs.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py @@ -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,