From 45bb88460c75bfd7f73f40923bbc3877c38ad3bf Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 14 Sep 2012 12:42:52 +0200 Subject: [PATCH] Remove wrongly added movies. --- couchpotato/core/plugins/searcher/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index d088c66..567b84e 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -93,6 +93,8 @@ class Searcher(Plugin): default_title = getTitle(movie['library']) if not default_title: + log.error('No proper info found for movie, removing it from library to cause it from having more issues.') + fireEvent('movie.delete', movie['id'], single = True) return fireEvent('notify.frontend', type = 'searcher.started.%s' % movie['id'], data = True, message = 'Searching for "%s"' % default_title)