diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-02 22:40:35 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-02 22:40:35 +0200 |
commit | b203095d4c95d471bc2ac7045693c6938ee914d1 (patch) | |
tree | e3c635796f3789e3aceb89483145b06b5383de42 /youtube_dl/extractor/europa.py | |
parent | f3b098fb90b985484d800fcdbfe18add2360e4df (diff) |
[europa] Style fix: add whitespace after comma
Diffstat (limited to 'youtube_dl/extractor/europa.py')
-rw-r--r-- | youtube_dl/extractor/europa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/europa.py b/youtube_dl/extractor/europa.py index 9e33cacff..adc43919e 100644 --- a/youtube_dl/extractor/europa.py +++ b/youtube_dl/extractor/europa.py @@ -63,7 +63,7 @@ class EuropaIE(InfoExtractor): thumbnmail = xpath_text(playlist, './info/thumburl', 'thumbnail') upload_date = unified_strdate(xpath_text(playlist, './info/date', 'upload date')) duration = parse_duration(xpath_text(playlist, './info/duration', 'duration')) - view_count = int_or_none(xpath_text(playlist,'./info/views', 'views')) + view_count = int_or_none(xpath_text(playlist, './info/views', 'views')) language_preference = qualities(preferred_langs[::-1]) |