Browse Source

Fix categories error

pull/2269/head
mano3m 12 years ago
parent
commit
579c1fa53c
  1. 2
      couchpotato/core/plugins/renamer/main.py

2
couchpotato/core/plugins/renamer/main.py

@ -94,7 +94,7 @@ class Renamer(Plugin):
# Get all folders that should not be processed # Get all folders that should not be processed
no_process = [self.conf('to')] 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]) no_process.extend([item['destination'] for item in cat_list])
try: try:
if Env.setting('library', section = 'manage').strip(): if Env.setting('library', section = 'manage').strip():

Loading…
Cancel
Save