summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2010-05-02 00:44:35 +0200
committerGravatar mkaay <mkaay@mkaay.de> 2010-05-02 00:44:35 +0200
commite49b1f4fdd4cae3d82634aee092613e33ad07c83 (patch)
tree56c86d17fe1a6d3023aa4e5bb296a98c3dde0071 /module
parentfixed cnl (diff)
parentremoved unused imports (diff)
downloadpyload-e49b1f4fdd4cae3d82634aee092613e33ad07c83.tar.xz
merge
Diffstat (limited to 'module')
-rw-r--r--module/download_thread.py2
-rwxr-xr-xmodule/network/Request.py2
-rw-r--r--module/plugins/captcha/LinksaveIn.py1
-rw-r--r--module/web/run_fcgi.py2
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