youtube-dl

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

commit 4f978523161abb0af241a91da13158d6d91ff442
parent 16040f46d64bad8dcc5f948288ef469dd787d3d3
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 12 Dec 2014 04:09:32 +0100

Remove unused imports

Diffstat:
Myoutube_dl/extractor/cinchcast.py | 1-
Myoutube_dl/extractor/pornhd.py | 1-
Myoutube_dl/extractor/screenwavemedia.py | 2--
Myoutube_dl/extractor/tvplay.py | 1-
4 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/cinchcast.py b/youtube_dl/extractor/cinchcast.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals from .common import InfoExtractor from ..utils import ( - int_or_none, unified_strdate, xpath_text, ) diff --git a/youtube_dl/extractor/pornhd.py b/youtube_dl/extractor/pornhd.py @@ -8,7 +8,6 @@ from ..utils import ( int_or_none, js_to_json, qualities, - determine_ext, ) diff --git a/youtube_dl/extractor/screenwavemedia.py b/youtube_dl/extractor/screenwavemedia.py @@ -5,9 +5,7 @@ import re from .common import InfoExtractor from ..utils import ( - ExtractorError, int_or_none, - month_by_name, unified_strdate, ) diff --git a/youtube_dl/extractor/tvplay.py b/youtube_dl/extractor/tvplay.py @@ -6,7 +6,6 @@ import re from .common import InfoExtractor from ..compat import compat_str from ..utils import ( - ExtractorError, parse_iso8601, qualities, )