[npo] Remove unused import

This commit is contained in:
Philipp Hagemeister 2015-01-11 23:43:09 +01:00
parent 263255eb8d
commit 5c4a81d934
1 changed files with 3 additions and 4 deletions

View File

@ -4,13 +4,12 @@ import re
from .common import InfoExtractor
from ..utils import (
unified_strdate,
fix_xml_ampersands,
parse_duration,
qualities,
strip_jsonp,
unified_strdate,
url_basename,
fix_xml_ampersands,
determine_ext,
)
@ -136,7 +135,7 @@ class NPOIE(InfoExtractor):
stream_url = stream.get('url')
if not stream_url:
continue
if not '.asf' in stream_url:
if '.asf' not in stream_url:
formats.append({
'url': stream_url,
'quality': stream.get('kwaliteit'),