Remove * imports

pull/8/head
Philipp Hagemeister 2013-11-17 16:47:52 +01:00
rodzic 1e5b9a95fd
commit ce02ed60f2
2 zmienionych plików z 31 dodań i 3 usunięć

Wyświetl plik

@ -16,7 +16,31 @@ import traceback
if os.name == 'nt': if os.name == 'nt':
import ctypes import ctypes
from .utils import * from .utils import (
compat_http_client,
compat_print,
compat_str,
compat_urllib_error,
compat_urllib_request,
ContentTooShortError,
date_from_str,
DateRange,
determine_ext,
DownloadError,
encodeFilename,
ExtractorError,
locked_file,
MaxDownloadsReached,
PostProcessingError,
preferredencoding,
SameFileError,
sanitize_filename,
subtitles_filename,
takewhile_inclusive,
UnavailableVideoError,
write_json_file,
write_string,
)
from .extractor import get_info_extractor, gen_extractors from .extractor import get_info_extractor, gen_extractors
from .FileDownloader import FileDownloader from .FileDownloader import FileDownloader
@ -267,7 +291,7 @@ class YoutubeDL(object):
"""Report file has already been fully downloaded.""" """Report file has already been fully downloaded."""
try: try:
self.to_screen(u'[download] %s has already been downloaded' % file_name) self.to_screen(u'[download] %s has already been downloaded' % file_name)
except (UnicodeEncodeError) as err: except UnicodeEncodeError:
self.to_screen(u'[download] The file has already been downloaded') self.to_screen(u'[download] The file has already been downloaded')
def increment_downloads(self): def increment_downloads(self):

Wyświetl plik

@ -2,11 +2,15 @@ import io
import json import json
import traceback import traceback
import hashlib import hashlib
import os
import subprocess import subprocess
import sys import sys
from zipimport import zipimporter from zipimport import zipimporter
from .utils import * from .utils import (
compat_str,
compat_urllib_request,
)
from .version import __version__ from .version import __version__
def rsa_verify(message, signature, key): def rsa_verify(message, signature, key):