The opening curly brace {
is a regex reserved [control character](http://stackoverflow.com/a/400316/1106367), so it needs to be escaped.
This commit is contained in:
parent
c03844a4ec
commit
52585fd6dc
2 changed files with 2 additions and 2 deletions
|
@ -1073,7 +1073,7 @@ class GenericIE(InfoExtractor):
|
|||
found = filter_video(re.findall(r'''(?xs)
|
||||
flowplayer\("[^"]+",\s*
|
||||
\{[^}]+?\}\s*,
|
||||
\s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
|
||||
\s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
|
||||
["']?url["']?\s*:\s*["']([^"']+)["']
|
||||
''', webpage))
|
||||
if not found:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue