From 2dcc1e096e303d776c2fe83e98a498211f6779fd Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 17 Dec 2012 21:10:04 +0100 Subject: [PATCH] Make path safe first --- couchpotato/core/plugins/renamer/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/plugins/renamer/main.py b/couchpotato/core/plugins/renamer/main.py index 1adf6592..5a3549c5 100644 --- a/couchpotato/core/plugins/renamer/main.py +++ b/couchpotato/core/plugins/renamer/main.py @@ -340,6 +340,7 @@ class Renamer(Plugin): log.info('Removing "%s"', src) try: + src = ss(src) if os.path.isfile(src): os.remove(src)