Browse Source

[ooyala] Style fix

master
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
5268a05e47
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/extractor/ooyala.py

2
youtube_dl/extractor/ooyala.py

@ -121,7 +121,7 @@ class OoyalaIE(InfoExtractor):
'abr': int_or_none(stream.get('audio_bitrate')), 'abr': int_or_none(stream.get('audio_bitrate')),
'vbr': int_or_none(stream.get('video_bitrate')), 'vbr': int_or_none(stream.get('video_bitrate')),
}) })
if len(formats):
if formats:
return { return {
'id': embedCode, 'id': embedCode,
'formats': formats, 'formats': formats,

Loading…
Cancel
Save