summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar AndroKev <neureither.kevin@gmail.com> 2013-11-02 18:34:05 +0100
committerGravatar AndroKev <neureither.kevin@gmail.com> 2013-11-02 18:34:05 +0100
commit1cc2e8415828c2e4d60a3c872ea6b6cfd5f284c5 (patch)
treef568f112f4f10265444f41ac981385f2e2ae1d8f /module
parentDeleted default value and cleaned the code a little bit (diff)
downloadpyload-1cc2e8415828c2e4d60a3c872ea6b6cfd5f284c5.tar.xz
Deleted the wildcard
Diffstat (limited to 'module')
-rw-r--r--module/plugins/internal/UnRar.py3
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")