From 9049742ba685fba578eb7e63bfea39c318bdc2b2 Mon Sep 17 00:00:00 2001 From: Olivier Date: Wed, 15 Jun 2016 08:31:10 +0200 Subject: UnRar FIX file exclusion not working --- module/plugins/internal/UnRar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module') 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") -- cgit v1.2.3