summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar Jens Hörnlein <jens.hoernlein@googlemail.com> 2015-02-04 23:14:12 +0100
committerGravatar Jens Hörnlein <jens.hoernlein@googlemail.com> 2015-02-04 23:14:12 +0100
commitc1268bbbe35ebd8d5308051c169160257ad14c6e (patch)
treed7ede5fcc6c60953dea0bef4dc0996a0df1b642c /module/plugins
parent[Unrar] Fix: Deleting All Files after Extraction (diff)
downloadpyload-c1268bbbe35ebd8d5308051c169160257ad14c6e.tar.xz
[ExtractArchive] fixed Queue Get
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/hooks/ExtractArchive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py
index e1d6dff59..6e6a6862c 100644
--- a/module/plugins/hooks/ExtractArchive.py
+++ b/module/plugins/hooks/ExtractArchive.py
@@ -63,7 +63,7 @@ class ArchiveQueue(object):
def get(self):
- return self.plugin.getStorage("ExtractArchive:%s" % self.storage, "").decode('base64').split()
+ return [int(pid) for pid in self.plugin.getStorage("ExtractArchive:%s" % self.storage, "").decode('base64').split()]
def set(self, value):