Browse Source

Let user know to report weird errors

pull/876/merge
Ruud 13 years ago
parent
commit
3da0b1a804
  1. 1
      couchpotato/core/plugins/searcher/main.py

1
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()))

Loading…
Cancel
Save