Use re.DOTALL by default when searching OpenGraph properties

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-07-13 11:29:08 +02:00
parent 46720279c2
commit 44dbe89035
2 changed files with 2 additions and 2 deletions

View file

@ -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]