diff options
author | AndroKev <neureither.kevin@gmail.com> | 2013-11-02 18:34:05 +0100 |
---|---|---|
committer | AndroKev <neureither.kevin@gmail.com> | 2013-11-02 18:34:05 +0100 |
commit | 1cc2e8415828c2e4d60a3c872ea6b6cfd5f284c5 (patch) | |
tree | f568f112f4f10265444f41ac981385f2e2ae1d8f /module | |
parent | Deleted default value and cleaned the code a little bit (diff) | |
download | pyload-1cc2e8415828c2e4d60a3c872ea6b6cfd5f284c5.tar.xz |
Deleted the wildcard
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/UnRar.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index 8a97ac7b7..80ee39cdf 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -188,9 +188,8 @@ class UnRar(AbtractExtractor): if self.excludefiles: for word in self.excludefiles.split(';'): - args.append("-x*" + word) + args.append("-x%s" % word ) - # assume yes on all queries args.append("-y") |