diff options
author | codesparkle <adam.thalhammer@outlook.com> | 2015-01-30 18:41:40 +1100 |
---|---|---|
committer | codesparkle <adam.thalhammer@outlook.com> | 2015-01-30 18:41:40 +1100 |
commit | 52585fd6dcd5020f2800d133588d7232419dddc0 (patch) | |
tree | b7b221cf17b780770275ab60595adbda7940ab4d /youtube_dl/extractor/generic.py | |
parent | c03844a4ec0bffef4803394545c7a5cc16dc70e1 (diff) |
The opening curly brace `{` is a regex reserved [control character](http://stackoverflow.com/a/400316/1106367), so it needs to be escaped.
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r-- | youtube_dl/extractor/generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 41884ed7a..a6f102a4e 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -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: |