aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):