From f4f618f95a2348c8881ae455e1c8ad01ba3eae30 Mon Sep 17 00:00:00 2001 From: Gutz-Pilz Date: Wed, 25 Mar 2015 22:02:11 +0100 Subject: fixed "permanent" issue (forgot to change filversion) --- module/plugins/hooks/ExtractArchive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module') diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index c0fe22545..5d71e89ec 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -106,7 +106,7 @@ class ArchiveQueue(object): class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.36" + __version__ = "1.37" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract with full paths" , True ), @@ -471,7 +471,7 @@ class ExtractArchive(Hook): file = fs_encode(f) if os.path.exists(file) and self.trash: send2trash(file) - elif os.path.exists: + elif os.path.exists(file): os.remove(file) else: self.logDebug("%s does not exists" % f) -- cgit v1.2.3