Răsfoiți Sursa

[pbs] No need to escape colon

Sergey M․ 10 ani în urmă
părinte
comite
c7620992d2
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      youtube_dl/extractor/pbs.py

+ 1 - 1
youtube_dl/extractor/pbs.py

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