summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliving <sokolov.dominika@gmail.com>2020-10-29 15:00:23 -0400
committerGitHub <noreply@github.com>2020-10-29 15:00:23 -0400
commitc61a20804ddd5e1248516811a5038c0775245389 (patch)
tree1e1645a5f2b0fc46fdbc5146ac2b4b28d4a64203
parent6a82b63f29dc3014038d79f814477a33b0189aa8 (diff)
[fix] Build fail.
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 1e0a8f991..0649dc6e3 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1955,7 +1955,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if cipher:
if 's' in url_data or self._downloader.params.get('youtube_include_dash_manifest', True):
- ASSETS_RE = [ r'"assets":.+?"js":\s*("[^"]+")', r'"jsUrl":("[^"]+")' ]
+ ASSETS_RE = [r'"assets":.+?"js":\s*("[^"]+")', r'"jsUrl":("[^"]+")']
jsplayer_url_json = self._search_regex(
ASSETS_RE,
embed_webpage if age_gate else video_webpage,