summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-31 12:02:03 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-31 12:02:03 +0100
commit9bcc44f285360334980d375601f4e69ac5e0d2af (patch)
tree9011d921e8ea324370baeccda1b9a58a62d6e508
parent[ExtractArchive] Fix https://github.com/pyload/pyload/issues/1109 and https:/... (diff)
downloadpyload-9bcc44f285360334980d375601f4e69ac5e0d2af.tar.xz
[ExtractArchive] Fix typo (thx VinceGitHub)
-rw-r--r--module/plugins/hooks/ExtractArchive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py
index a09e96d1f..494381124 100644
--- a/module/plugins/hooks/ExtractArchive.py
+++ b/module/plugins/hooks/ExtractArchive.py
@@ -99,7 +99,7 @@ class ArchiveQueue(object):
class ExtractArchive(Hook):
__name__ = "ExtractArchive"
__type__ = "hook"
- __version__ = "1.15"
+ __version__ = "1.16"
__config__ = [("activated" , "bool" , "Activated" , True ),
("fullpath" , "bool" , "Extract full path" , True ),
@@ -380,7 +380,7 @@ class ExtractArchive(Hook):
pyfile.setStatus("processing")
if self.core.debug:
- self.logDebug("Would delete: %s" % ", ".join(plugin.getDeleteFiles()))
+ self.logDebug("Would delete: %s" % ", ".join(archive.getDeleteFiles()))
if self.getConfig("delete"):
files = archive.getDeleteFiles()