diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-01-27 04:15:12 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-01-27 04:15:12 +0100 |
commit | 25580f3251a8dcaa04a3edd9af328372c7caca4a (patch) | |
tree | 57fac671064af9a0c16e5d40f328de08a3d53bad /youtube_dl/InfoExtractors.py | |
parent | da4de959dfb4cef9b79e6b65ed7dbf6f95092904 (diff) |
8tracks: Ignore hashes
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index ff085b0ee..7545ae0b9 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3861,7 +3861,7 @@ class YouJizzIE(InfoExtractor): class EightTracksIE(InfoExtractor): IE_NAME = '8tracks' - _VALID_URL = r'https?://8tracks.com/(?P<user>[^/]+)/(?P<id>[^/]+)' + _VALID_URL = r'https?://8tracks.com/(?P<user>[^/]+)/(?P<id>[^/#]+)(?:#.*)?$' def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) |