From 609805b84d996a0dad2382a07ab421b8985c9d47 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 14 Jun 2013 20:04:49 +0200 Subject: [PATCH] Don't allow keyerror in event --- couchpotato/core/event.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/couchpotato/core/event.py b/couchpotato/core/event.py index ed4c881d..017f7b5e 100644 --- a/couchpotato/core/event.py +++ b/couchpotato/core/event.py @@ -138,8 +138,6 @@ def fireEvent(name, *args, **kwargs): options['on_complete']() return results - except KeyError, e: - pass except Exception: log.error('%s: %s', (name, traceback.format_exc()))