From ef6d0e04c0b977d18d8a60b7dc60d067b42af35d Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 12 Oct 2012 21:04:49 +0200 Subject: [PATCH] Use event value --- couchpotato/core/event.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/couchpotato/core/event.py b/couchpotato/core/event.py index 4842aad..3a5b900 100644 --- a/couchpotato/core/event.py +++ b/couchpotato/core/event.py @@ -57,8 +57,9 @@ def fireEvent(name, *args, **kwargs): # Do options for x in options: try: + val = kwargs[x] del kwargs[x] - options[x] = True + options[x] = val except: pass e = events[name]