diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-05-07 17:04:15 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-05-07 17:04:15 +0200 |
commit | 5268a05e4722d74e125a97b023d92943745bb249 (patch) | |
tree | e6271568d65219ee3cc7d0fd1c321ee25ab719ea /youtube_dl | |
parent | 406224be5231e602b543579706ad6056b75fbe68 (diff) |
[ooyala] Style fix
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ooyala.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ooyala.py b/youtube_dl/extractor/ooyala.py index 0b049274a..c0e6d643d 100644 --- a/youtube_dl/extractor/ooyala.py +++ b/youtube_dl/extractor/ooyala.py @@ -121,7 +121,7 @@ class OoyalaIE(InfoExtractor): 'abr': int_or_none(stream.get('audio_bitrate')), 'vbr': int_or_none(stream.get('video_bitrate')), }) - if len(formats): + if formats: return { 'id': embedCode, 'formats': formats, |