projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98d560f
)
[teamcoco] Fix base64 regexp
author
Jakub Wilk
<jwilk@jwilk.net>
Sat, 14 May 2016 11:19:54 +0000
(13:19 +0200)
committer
Jakub Wilk
<jwilk@jwilk.net>
Sat, 14 May 2016 11:19:54 +0000
(13:19 +0200)
youtube_dl/extractor/teamcoco.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/teamcoco.py
b/youtube_dl/extractor/teamcoco.py
index b49ab5f5b98c2d6219d1d17a1c0aea02eb534f61..79a7789200e34e1e457d9cd69cdabb495e3548c3 100644
(file)
--- a/
youtube_dl/extractor/teamcoco.py
+++ b/
youtube_dl/extractor/teamcoco.py
@@
-88,7
+88,7
@@
class TeamcocoIE(InfoExtractor):
preload_codes = self._html_search_regex(
r'(function.+)setTimeout\(function\(\)\{playlist',
webpage, 'preload codes')
- base64_fragments = re.findall(r'"([a-zA-
z
0-9+/=]+)"', preload_codes)
+ base64_fragments = re.findall(r'"([a-zA-
Z
0-9+/=]+)"', preload_codes)
base64_fragments.remove('init')
def _check_sequence(cur_fragments):