From f765794c99feaf548db0a77c50883b93e0fd85df Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 1 Jul 2014 21:00:05 +0200 Subject: [PATCH] Don't add managed to no-process renamer list. fix #3538 --- couchpotato/core/plugins/renamer.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/couchpotato/core/plugins/renamer.py b/couchpotato/core/plugins/renamer.py index ef563098..024c4388 100644 --- a/couchpotato/core/plugins/renamer.py +++ b/couchpotato/core/plugins/renamer.py @@ -123,11 +123,6 @@ class Renamer(Plugin): no_process = [to_folder] cat_list = fireEvent('category.all', single = True) or [] no_process.extend([item['destination'] for item in cat_list]) - try: - if Env.setting('library', section = 'manage').strip(): - no_process.extend([sp(manage_folder) for manage_folder in splitString(Env.setting('library', section = 'manage'), '::')]) - except: - pass # Check to see if the no_process folders are inside the "from" folder. if not os.path.isdir(base_folder) or not os.path.isdir(to_folder):