Allow empty titles because they do appear in some videos (fixes issue #53)

pull/8/head
Ricardo Garcia 2009-09-21 20:39:51 +02:00
rodzic 850ab76560
commit 583c714fde
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -719,7 +719,7 @@ class YoutubeIE(InfoExtractor):
video_uploader = urllib.unquote(mobj.group(1))
# title
mobj = re.search(r'(?m)&title=([^&]+)(?:&|$)', video_info_webpage)
mobj = re.search(r'(?m)&title=([^&]*)(?:&|$)', video_info_webpage)
if mobj is None:
self._downloader.trouble(u'ERROR: unable to extract video title')
return