youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5c4a81d9345f0520a9d40acbb8212fb94bcc9e24
parent 263255eb8d45377e54e23841b55f0609f0e7e8a4
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 11 Jan 2015 23:43:09 +0100

[npo] Remove unused import

Diffstat:
Myoutube_dl/extractor/npo.py | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py @@ -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'),