From d2fbbcefadd7fec2315b2fe9e41b91f7b997df54 Mon Sep 17 00:00:00 2001 From: Pedro Lopes Date: Tue, 30 Aug 2016 03:13:14 +0200 Subject: [PATCH] removed all quotes from extracted webpage to solve issue 10455 --- youtube_dl/extractor/bandcamp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py index 991ab0676..79b1b10c1 100644 --- a/youtube_dl/extractor/bandcamp.py +++ b/youtube_dl/extractor/bandcamp.py @@ -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 {