projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b17c974
)
Fix 8tracks
author
Philipp Hagemeister
<phihag@phihag.de>
Mon, 18 Feb 2013 18:11:32 +0000
(19:11 +0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Mon, 18 Feb 2013 18:11:32 +0000
(19:11 +0100)
youtube_dl/InfoExtractors.py
patch
|
blob
|
history
diff --git
a/youtube_dl/InfoExtractors.py
b/youtube_dl/InfoExtractors.py
index 9f63512d777438d422d8d721b54bfbb05d275837..627329ecd3848e8c15e1d9505c66880b2aff7e0c 100755
(executable)
--- a/
youtube_dl/InfoExtractors.py
+++ b/
youtube_dl/InfoExtractors.py
@@
-3913,7
+3913,7
@@
class EightTracksIE(InfoExtractor):
webpage = self._download_webpage(url, playlist_id)
- m = re.search(r"
new TRAX.Mix\((.*?)\);\n*\s*TRAX.initSearchAutocomplete\('#search'\);
", webpage, flags=re.DOTALL)
+ m = re.search(r"
PAGE.mix = (.*?);\n
", webpage, flags=re.DOTALL)
if not m:
raise ExtractorError(u'Cannot find trax information')
json_like = m.group(1)