summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-05-14 20:02:40 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-05-14 20:02:40 +0800
commita834622b89031dad5afbf96e4a5939a66b0d054b (patch)
treeaa56565dfb60d1a14f0956343efee79bacbe81e2
parent707bb426b16c69c93d593a3e3b68322a8691afd4 (diff)
parent791ff52f753ee123426766aaa5320eb63a874b7b (diff)
downloadyoutube-dl-a834622b89031dad5afbf96e4a5939a66b0d054b.tar.gz
youtube-dl-a834622b89031dad5afbf96e4a5939a66b0d054b.tar.xz
youtube-dl-a834622b89031dad5afbf96e4a5939a66b0d054b.zip
Merge pull request #9492 from jwilk/teamcoco
[teamcoco] Fix base64 regexp
-rw-r--r--youtube_dl/extractor/teamcoco.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py
index b49ab5f5b..79a778920 100644
--- 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-z0-9+/=]+)"', preload_codes)
+        base64_fragments = re.findall(r'"([a-zA-Z0-9+/=]+)"', preload_codes)
         base64_fragments.remove('init')
 
         def _check_sequence(cur_fragments):