diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-13 11:29:08 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-13 11:29:08 +0200 |
commit | 44dbe8903580e1e62ea6f3881b2fa469853c4a83 (patch) | |
tree | e37407f97519aa86e1295895aa3724a2c2960997 /youtube_dl/extractor/funnyordie.py | |
parent | 46720279c28afb646b6ac19bcb11e85bb4bea726 (diff) |
Use re.DOTALL by default when searching OpenGraph properties
Diffstat (limited to 'youtube_dl/extractor/funnyordie.py')
-rw-r--r-- | youtube_dl/extractor/funnyordie.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index 64363dcd5..67a7e5f76 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -32,6 +32,6 @@ class FunnyOrDieIE(InfoExtractor): 'url': video_url, 'ext': 'mp4', 'title': title, - 'description': self._og_search_description(webpage, flags=re.DOTALL), + 'description': self._og_search_description(webpage), } return [info] |