diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-22 13:59:46 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-22 13:59:46 +0100 |
commit | a2ab9ced6ffb038a051e465f06d8b5ca6512a79b (patch) | |
tree | 312de4b766b27d88e7f1e566d8cf6bc1d9461d50 /module/plugins/hooks/ExtractArchive.py | |
parent | realdebrid encoding fix (diff) | |
download | pyload-a2ab9ced6ffb038a051e465f06d8b5ca6512a79b.tar.xz |
try to fix unrar encoding issues
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index d9c2e57bb..53f88b3a5 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -3,7 +3,6 @@ import sys import os -from os import remove, chmod, makedirs from os.path import basename, isfile, isdir, join from traceback import print_exc from copy import copy @@ -48,7 +47,7 @@ if os.name != "nt": from pwd import getpwnam from grp import getgrnam -from module.utils.fs import save_join, fs_encode, exists +from module.utils.fs import save_join, fs_encode, exists, remove, chmod, makedirs from module.plugins.Hook import Hook, threaded, Expose from module.plugins.internal.AbstractExtractor import ArchiveError, CRCError, WrongPassword |