mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-12-22 16:57:40 +00:00
Remove unnecessary quote escape
This commit is contained in:
parent
d303e1e05f
commit
699390c40d
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ class GlomexEmbedIE(GlomexBaseIE):
|
||||||
(?:\s|.)*?
|
(?:\s|.)*?
|
||||||
)+</script>
|
)+</script>
|
||||||
)
|
)
|
||||||
''' % {'quot_re': r'[\"\']', 'url_re': _URL_RE}
|
''' % {'quot_re': r'["\']', 'url_re': _URL_RE}
|
||||||
for mobj in re.finditer(EMBED_RE, webpage):
|
for mobj in re.finditer(EMBED_RE, webpage):
|
||||||
url, html_tag, video_id_html, integration_html, glomex_player, \
|
url, html_tag, video_id_html, integration_html, glomex_player, \
|
||||||
script_tag, video_id_js, integration_js = \
|
script_tag, video_id_js, integration_js = \
|
||||||
|
|
Loading…
Reference in a new issue