diff options
author | 2015-05-12 12:22:20 +0200 | |
---|---|---|
committer | 2015-05-12 12:22:20 +0200 | |
commit | 906bb7c1ecc5c34aa93148894eef763f27eba98e (patch) | |
tree | 2f09a639cdd9e414e8f165a667c71a837288d4de /pyload/plugin/addon/ExtractArchive.py | |
parent | Revert damaged logo.png (diff) | |
download | pyload-906bb7c1ecc5c34aa93148894eef763f27eba98e.tar.xz |
Other import fixes
Diffstat (limited to 'pyload/plugin/addon/ExtractArchive.py')
-rw-r--r-- | pyload/plugin/addon/ExtractArchive.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyload/plugin/addon/ExtractArchive.py b/pyload/plugin/addon/ExtractArchive.py index a2b22e90c..53bf5559d 100644 --- a/pyload/plugin/addon/ExtractArchive.py +++ b/pyload/plugin/addon/ExtractArchive.py @@ -51,7 +51,6 @@ try: except ImportError: pass -from copy import copy if os.name != "nt": from grp import getgrnam from pwd import getpwnam @@ -145,7 +144,7 @@ class ExtractArchive(Addon): def setup(self): - self.queue = ArchiveQueue(self, "Queue") + self.queue = ArchiveQueue(self, "Queue.Queue") self.failed = ArchiveQueue(self, "Failed") self.interval = 60 |