Skip to content

Commit

Permalink
8tracks: Ignore hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Jan 27, 2013
1 parent da4de95 commit 25580f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3861,7 +3861,7 @@ def _real_extract(self, url):

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)
Expand Down

0 comments on commit 25580f3

Please sign in to comment.