diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 12:02:03 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 12:02:03 +0100 |
commit | 9bcc44f285360334980d375601f4e69ac5e0d2af (patch) | |
tree | 9011d921e8ea324370baeccda1b9a58a62d6e508 /module | |
parent | [ExtractArchive] Fix https://github.com/pyload/pyload/issues/1109 and https:/... (diff) | |
download | pyload-9bcc44f285360334980d375601f4e69ac5e0d2af.tar.xz |
[ExtractArchive] Fix typo (thx VinceGitHub)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 4 |
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() |