1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 21:22:51 +08:00

removed all quotes from extracted webpage to solve issue 10455

This commit is contained in:
Pedro Lopes 2016-08-30 03:13:14 +02:00
parent da30a20a4d
commit d2fbbcefad

View File

@ -176,6 +176,7 @@ class BandcampAlbumIE(InfoExtractor):
entries = [
self.url_result(compat_urlparse.urljoin(url, t_path), ie=BandcampIE.ie_key())
for t_path in tracks_paths]
webpage = webpage.replace('\\"', "")
title = self._search_regex(
r'album_title\s*:\s*"(.*?)"', webpage, 'title', fatal=False)
return {