diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-05-01 23:02:30 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-05-01 23:02:30 +0200 |
commit | 2144b29d811d7defb18885d7451c26a79922f446 (patch) | |
tree | 0555bf21446fc37fcda8fee40f391ee3bce2a9f5 | |
parent | removed unnecessary files (diff) | |
download | pyload-2144b29d811d7defb18885d7451c26a79922f446.tar.xz |
removed unused imports
-rw-r--r-- | module/download_thread.py | 2 | ||||
-rwxr-xr-x | module/network/Request.py | 2 | ||||
-rw-r--r-- | module/plugins/captcha/LinksaveIn.py | 1 | ||||
-rw-r--r-- | module/web/run_fcgi.py | 2 |
4 files changed, 0 insertions, 7 deletions
diff --git a/module/download_thread.py b/module/download_thread.py index 6dd9c3f2c..84f00c99f 100644 --- a/module/download_thread.py +++ b/module/download_thread.py @@ -23,13 +23,11 @@ import threading import traceback -from os.path import join from time import sleep, time from module.network.Request import AbortDownload from module.PullEvents import UpdateEvent -from module.network.Request import Request as Browser class Status(object): diff --git a/module/network/Request.py b/module/network/Request.py index d035048ff..ef2e7d1a4 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -21,8 +21,6 @@ """ import base64 -import cookielib -from gzip import GzipFile import time from os import sep, rename, stat from os.path import exists diff --git a/module/plugins/captcha/LinksaveIn.py b/module/plugins/captcha/LinksaveIn.py index 22b801273..ff6bbebba 100644 --- a/module/plugins/captcha/LinksaveIn.py +++ b/module/plugins/captcha/LinksaveIn.py @@ -4,7 +4,6 @@ from os import sep from os.path import dirname from os.path import abspath from glob import glob -import tempfile class LinksaveIn(OCR): diff --git a/module/web/run_fcgi.py b/module/web/run_fcgi.py index ce182f158..8091de5ea 100644 --- a/module/web/run_fcgi.py +++ b/module/web/run_fcgi.py @@ -4,8 +4,6 @@ import os import sys -from django.utils import importlib -from flup.server.fcgi import WSGIServer from flup.server.fcgi_base import BaseFCGIServer from flup.server.fcgi_base import FCGI_RESPONDER from flup.server.threadedserver import ThreadedServer |