From 08a1e1e582298dc91f03bf799dc72be2db125cfd Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 16 Sep 2013 22:33:45 +0200 Subject: [PATCH] Done use faulty None value for category --- 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 4bbf351a..0013298a 100644 --- a/couchpotato/core/plugins/renamer/main.py +++ b/couchpotato/core/plugins/renamer/main.py @@ -174,7 +174,7 @@ class Renamer(Plugin): # Overwrite destination when set in category destination = self.conf('to') for movie in library_ent.movies: - if movie.category and movie.category.destination and len(movie.category.destination) > 0: + if movie.category and movie.category.destination and len(movie.category.destination) > 0 and movie.category.destination != 'None': destination = movie.category.destination log.debug('Setting category destination for "%s": %s' % (movie_title, destination)) else: