diff options
author | Olivier <olivier-dev@gmx.com> | 2016-06-15 08:31:10 +0200 |
---|---|---|
committer | Olivier <olivier-dev@gmx.com> | 2016-06-15 08:31:10 +0200 |
commit | 9049742ba685fba578eb7e63bfea39c318bdc2b2 (patch) | |
tree | 836a21d53dae95a26d8f3aee4955daacf283d1f3 /module | |
parent | Increment version number (diff) | |
download | pyload-9049742ba685fba578eb7e63bfea39c318bdc2b2.tar.xz |
UnRar FIX file exclusion not working
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/UnRar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index e22120e94..18416a4fe 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -209,7 +209,7 @@ class UnRar(Extractor): args.append("-or") for word in self.excludefiles: - args.append("-x'%s'" % word.strip()) + args.append("-x%s" % word.strip()) #: Assume yes on all queries args.append("-y") |