aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2020-08-15 16:01:44 +0200
committerneodarz <neodarz@neodarz.net>2020-08-15 16:01:44 +0200
commit34f3b03dbe4d659a5473a1e09a0e2896e3e3790e (patch)
tree77b795df058c9eb3d4373190b3e18a6c435d57a4
parent2e3e8371c34bebd46bdc79fc7778d8f250d87f0c (diff)
downloadmusic_downloader-34f3b03dbe4d659a5473a1e09a0e2896e3e3790e.tar.xz
music_downloader-34f3b03dbe4d659a5473a1e09a0e2896e3e3790e.zip
Be less restrictive on bandcamp pattern
-rw-r--r--extractors/bandcamp.py2
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):