diff options
| -rw-r--r-- | youtube_dl/extractor/blinkx.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/blinkx.py b/youtube_dl/extractor/blinkx.py index 7d558e262..3e461e715 100644 --- a/youtube_dl/extractor/blinkx.py +++ b/youtube_dl/extractor/blinkx.py @@ -52,7 +52,7 @@ class BlinkxIE(InfoExtractor):                      'height': int(m['h']),                  })              elif m['type'] == 'original': -                duration = m['d'] +                duration = float(m['d'])              elif m['type'] == 'youtube':                  yt_id = m['link']                  self.to_screen('Youtube video detected: %s' % yt_id) | 
