From 4ad38893d787c83a7659fefb0b1732f164607827 Mon Sep 17 00:00:00 2001 From: GammaC0de Date: Tue, 29 Dec 2015 03:14:54 +0200 Subject: [ExtractArchive] Update --- module/plugins/hooks/ExtractArchive.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/plugins/hooks') 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): -- cgit v1.2.3