diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 13:05:30 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 13:05:30 +0200 |
commit | 6a38ae35495d39f5c2649434810a9d507abcbf20 (patch) | |
tree | d3f0a94cf0f6a3ab862cd8bbf6ba7a35c4779fcd /module | |
parent | Fix https://github.com/pyload/pyload/issues/1597 (diff) | |
download | pyload-6a38ae35495d39f5c2649434810a9d507abcbf20.tar.xz |
Fix https://github.com/pyload/pyload/issues/1594 (2)
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 98dea58ca..62139ccc5 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -112,7 +112,7 @@ class ArchiveQueue(object): class ExtractArchive(Addon): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.48" + __version__ = "1.49" __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , True ), @@ -353,7 +353,7 @@ class ExtractArchive(Addon): #: Remove processed file and related multiparts from list files_ids = [(fname, fid, fout) for fname, fid, fout in files_ids \ - if fname not in archive.getDeleteFiles()] + if fname not in archive.get_delete_files()] self.log_debug("Extracted files: %s" % new_files) self.set_permissions(new_files) @@ -470,7 +470,7 @@ class ExtractArchive(Addon): pyfile.setProgress(100) pyfile.setStatus("processing") - delfiles = archive.getDeleteFiles() + delfiles = archive.get_delete_files() self.log_debug("Would delete: " + ", ".join(delfiles)) if self.get_config('delete'): |