diff options
author | 2015-03-01 22:41:08 +0100 | |
---|---|---|
committer | 2015-03-01 22:41:08 +0100 | |
commit | 3a9c167ceca27d57dbef927626fe853a3d0e30b2 (patch) | |
tree | d16cad2af7214c3b5ba619aab2bc2305e2822f74 /module/plugins/internal/Extractor.py | |
parent | [UpdateManager] Fix https://github.com/pyload/pyload/issues/1089 (diff) | |
download | pyload-3a9c167ceca27d57dbef927626fe853a3d0e30b2.tar.xz |
[Extractor] Use self.target
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index ee62ebcb7..bc8e67c6d 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -3,6 +3,7 @@ import os from module.PyFile import PyFile +from module.utils import fs_encode class ArchiveError(Exception): @@ -71,6 +72,7 @@ class Extractor: fid=None): """ Initialize extractor for specific file """ self.manager = manager + self.target = "'%s'" % fs_encode(filename) self.filename = filename self.out = out self.fullpath = fullpath |