Browse Source

Use event value

pull/920/head
Ruud 13 years ago
parent
commit
ef6d0e04c0
  1. 3
      couchpotato/core/event.py

3
couchpotato/core/event.py

@ -57,8 +57,9 @@ def fireEvent(name, *args, **kwargs):
# Do options # Do options
for x in options: for x in options:
try: try:
val = kwargs[x]
del kwargs[x] del kwargs[x]
options[x] = True options[x] = val
except: pass except: pass
e = events[name] e = events[name]

Loading…
Cancel
Save