diff options
author | neodarz <neodarz@neodarz.net> | 2020-08-15 16:01:44 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-08-15 16:01:44 +0200 |
commit | 34f3b03dbe4d659a5473a1e09a0e2896e3e3790e (patch) | |
tree | 77b795df058c9eb3d4373190b3e18a6c435d57a4 /extractors | |
parent | 2e3e8371c34bebd46bdc79fc7778d8f250d87f0c (diff) | |
download | music_downloader-34f3b03dbe4d659a5473a1e09a0e2896e3e3790e.tar.xz music_downloader-34f3b03dbe4d659a5473a1e09a0e2896e3e3790e.zip |
Be less restrictive on bandcamp pattern
Diffstat (limited to 'extractors')
-rw-r--r-- | extractors/bandcamp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extractors/bandcamp.py b/extractors/bandcamp.py index fbcfba3..dd18f44 100644 --- a/extractors/bandcamp.py +++ b/extractors/bandcamp.py @@ -6,7 +6,7 @@ from bs4 import BeautifulSoup from .common import Extractor class bandcamp(Extractor): - pattern = re.compile(r'(http(?:s|):\/\/.*bandcamp.com\/)') + pattern = re.compile(r'(http(?:s|):\/\/.*bandcamp.com)') filename_template = "%(artist)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" def __init__(self, reg, url): |