diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 02:14:54 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-29 02:14:54 +0100 |
commit | 4ad38893d787c83a7659fefb0b1732f164607827 (patch) | |
tree | 71766f90ee798a44d9a3995bdb063add1691a9ca /module | |
parent | [misc] fix fsjoin (diff) | |
download | pyload-4ad38893d787c83a7659fefb0b1732f164607827.tar.xz |
[ExtractArchive] Update
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index a60205f20..5dc960ec8 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -62,15 +62,15 @@ class ArchiveQueue(object): def get(self): - return self.plugin.retrieve(self.storage, default=[]) + return self.plugin.db.retrieve(self.storage, default=[]) def set(self, value): - return self.plugin.store(self.storage, value) + return self.plugin.db.store(self.storage, value) def delete(self): - return self.plugin.delete(self.storage) + return self.plugin.db.delete(self.storage) def add(self, item): |