From 579c1fa53cef25a1b81426b4c5a23cf41452944b Mon Sep 17 00:00:00 2001 From: mano3m Date: Sun, 20 Oct 2013 13:24:01 +0200 Subject: [PATCH] Fix categories error --- couchpotato/core/plugins/renamer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/renamer/main.py b/couchpotato/core/plugins/renamer/main.py index 520be52..2c62d74 100755 --- a/couchpotato/core/plugins/renamer/main.py +++ b/couchpotato/core/plugins/renamer/main.py @@ -94,7 +94,7 @@ class Renamer(Plugin): # Get all folders that should not be processed no_process = [self.conf('to')] - cat_list = fireEvent('category.all') + 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():