Browse Source

[nova] Fix Python 2.6 compatability issue

totalwebcasting
Slava Shklyaev 9 years ago
parent
commit
b0cda32f72
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/nova.py

+ 1
- 1
youtube_dl/extractor/nova.py View File

@ -141,7 +141,7 @@ class NovaIE(InfoExtractor):
mediafile = config['mediafile']
video_url = mediafile['src']
ext = determine_ext(video_url)
video_url = video_url.replace('&{}:'.format(ext), '')
video_url = video_url.replace('&%s:' % ext, '')
title = mediafile.get('meta', {}).get('title') or self._og_search_title(webpage)
description = clean_html(self._og_search_description(webpage, default=None))


Loading…
Cancel
Save