diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-02-23 21:30:30 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-02-23 21:30:30 +0600 |
commit | 409693984f0acb8fbbf006c0d7965bc138211ac6 (patch) | |
tree | ae9794274366fdcb9391ace0baf458a5e99406d5 | |
parent | 04e8c1108023d9fe5c466d16f988a469e04f326e (diff) |
[soundgasm:profile] Fix _VALID_URL
-rw-r--r-- | youtube_dl/extractor/soundgasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundgasm.py b/youtube_dl/extractor/soundgasm.py index 26e96a120..9e992c9b7 100644 --- a/youtube_dl/extractor/soundgasm.py +++ b/youtube_dl/extractor/soundgasm.py @@ -43,7 +43,7 @@ class SoundgasmIE(InfoExtractor): class SoundgasmProfileIE(InfoExtractor): IE_NAME = 'soundgasm:profile' - _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<id>[^/]+)' + _VALID_URL = r'https?://(?:www\.)?soundgasm\.net/u/(?P<id>[^/]+)/?(?:\#.*)?$' _TEST = { 'url': 'http://soundgasm.net/u/ytdl', 'info_dict': { |