diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-02-14 15:37:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-02-14 15:37:17 +0600 |
commit | 611c1dd96efc36a788475e14cc4de64d554d28a0 (patch) | |
tree | 4ac501e07c6ab8281c22de2d0ec577561e32465c /youtube_dl/extractor/pornovoisines.py | |
parent | d800609c62703e4e6edd2891a8432306462e4db3 (diff) |
[refactor] Single quotes consistency
Diffstat (limited to 'youtube_dl/extractor/pornovoisines.py')
-rw-r--r-- | youtube_dl/extractor/pornovoisines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pornovoisines.py b/youtube_dl/extractor/pornovoisines.py index eba4dfbb3..1a53fd71c 100644 --- a/youtube_dl/extractor/pornovoisines.py +++ b/youtube_dl/extractor/pornovoisines.py @@ -56,7 +56,7 @@ class PornoVoisinesIE(InfoExtractor): r'<h1>(.+?)</h1>', webpage, 'title', flags=re.DOTALL) description = self._html_search_regex( r'<article id="descriptif">(.+?)</article>', - webpage, "description", fatal=False, flags=re.DOTALL) + webpage, 'description', fatal=False, flags=re.DOTALL) thumbnail = self._search_regex( r'<div id="mediaspace%s">\s*<img src="/?([^"]+)"' % video_id, |