youtube-dl

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

commit a1ef7e85d6834d5e8a9a2171b220a9e3b93dd2cf
parent ef2fac6f4ae5191abed1962b155aec0bb0f17802
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu,  5 Dec 2013 14:31:54 +0100

Remove unused imports

Diffstat:
Myoutube_dl/extractor/smotri.py | 1-
Myoutube_dl/extractor/theplatform.py | 1-
Myoutube_dl/extractor/viddler.py | 3---
Myoutube_dl/extractor/yahoo.py | 2+-
Myoutube_dl/utils.py | 1-
5 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/youtube_dl/extractor/smotri.py b/youtube_dl/extractor/smotri.py @@ -6,7 +6,6 @@ import hashlib from .common import InfoExtractor from ..utils import ( - determine_ext, ExtractorError ) diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py @@ -4,7 +4,6 @@ import json from .common import InfoExtractor from ..utils import ( xpath_with_ns, - find_xpath_attr, ) _x = lambda p: xpath_with_ns(p, {'smil': 'http://www.w3.org/2005/SMIL21/Language'}) diff --git a/youtube_dl/extractor/viddler.py b/youtube_dl/extractor/viddler.py @@ -2,9 +2,6 @@ import json import re from .common import InfoExtractor -from ..utils import ( - determine_ext, -) class ViddlerIE(InfoExtractor): diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py @@ -47,7 +47,7 @@ class YahooIE(InfoExtractor): # The 'meta' field is not always in the video webpage, we request it # from another page long_id = info['id'] - return self._get_info(info['id'], video_id) + return self._get_info(long_id, video_id) def _get_info(self, long_id, video_id): query = ('SELECT * FROM yahoo.media.video.streams WHERE id="%s"' diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -17,7 +17,6 @@ import ssl import socket import sys import traceback -import xml.etree.ElementTree import zlib try: