summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-03-04 21:21:45 +0700
committerSergey M․ <dstftw@gmail.com>2014-03-04 21:29:14 +0700
commit9d3f7781f34e44065926b1016fd84d260519a015 (patch)
tree4362911da42a193da398ccdf187823488d15e710
parentc7095dada3fdd2fabaa535cc176b7d4a2ae5726d (diff)
downloadyoutube-dl-9d3f7781f34e44065926b1016fd84d260519a015.tar.gz
youtube-dl-9d3f7781f34e44065926b1016fd84d260519a015.tar.xz
youtube-dl-9d3f7781f34e44065926b1016fd84d260519a015.zip
[soundcloud:set] Fix _VALID_URL regex (Closes #2509)
-rw-r--r--youtube_dl/extractor/soundcloud.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py
index 393b5f17c..1cc0dcb15 100644
--- a/youtube_dl/extractor/soundcloud.py
+++ b/youtube_dl/extractor/soundcloud.py
@@ -217,7 +217,7 @@ class SoundcloudIE(InfoExtractor):
         return self._extract_info_dict(info, full_title, secret_token=token)
 
 class SoundcloudSetIE(SoundcloudIE):
-    _VALID_URL = r'^(?:https?://)?(?:www\.)?soundcloud\.com/([\w\d-]+)/sets/([\w\d-]+)(?:[?].*)?$'
+    _VALID_URL = r'https?://(?:www\.)?soundcloud\.com/([\w\d-]+)/sets/([\w\d-]+)'
     IE_NAME = 'soundcloud:set'
     # it's in tests/test_playlists.py
     _TESTS = []