From 3da0b1a80410ebe166e9089d54c48c0e94dc9620 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 26 Sep 2012 20:12:03 +0200 Subject: [PATCH] Let user know to report weird errors --- couchpotato/core/plugins/searcher/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 5bf7aeb..41ae0d9 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -65,6 +65,7 @@ class Searcher(Plugin): try: self.single(movie_dict) except IndexError: + log.error('Forcing library update for %s, if you see this often, please report: %s', (movie_dict['library']['identifier'], traceback.format_exc())) fireEvent('library.update', movie_dict['library']['identifier'], force = True) except: log.error('Search failed for %s: %s', (movie_dict['library']['identifier'], traceback.format_exc()))