From: Philipp Hagemeister Date: Sun, 27 Jan 2013 03:15:12 +0000 (+0100) Subject: 8tracks: Ignore hashes X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=25580f3251a8dcaa04a3edd9af328372c7caca4a;p=youtube-dl 8tracks: Ignore hashes --- 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[^/]+)/(?P[^/]+)' + _VALID_URL = r'https?://8tracks.com/(?P[^/]+)/(?P[^/#]+)(?:#.*)?$' def _real_extract(self, url): mobj = re.match(self._VALID_URL, url)