From 16efa6ebccb8d973a778e644bc232be69a0ebf60 Mon Sep 17 00:00:00 2001 From: Lyz Date: Fri, 8 Mar 2019 13:05:35 +0100 Subject: [PATCH] Capture non-greedy the album elements --- youtube_dl/extractor/bandcamp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py index 422a2867f..0906ec8f5 100644 --- a/youtube_dl/extractor/bandcamp.py +++ b/youtube_dl/extractor/bandcamp.py @@ -436,7 +436,7 @@ class BandcampUserIE(InfoExtractor): webpage = self._download_webpage(url, uploader) - album_elements = re.findall(r'', webpage) + album_elements = re.findall(r'', webpage) if not album_elements: raise ExtractorError('The page doesn\'t contain any albums')