youtube-dl

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

commit c82a8dd14c813e1b022188925fc33fb4d831bc3d
parent f8253af561655c7c470323e631e8b66283bcf623
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 19 Dec 2015 19:04:38 +0600

[toggle] Remove unused imports

Diffstat:
Myoutube_dl/extractor/togglesg.py | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/togglesg.py b/youtube_dl/extractor/togglesg.py @@ -2,19 +2,15 @@ from __future__ import unicode_literals import json -import re -import itertools from .common import InfoExtractor from ..utils import ( + determine_ext, ExtractorError, int_or_none, - determine_ext, parse_iso8601, - remove_end, sanitized_Request, ) -from ..compat import compat_urllib_request class ToggleSgIE(InfoExtractor):