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
for x in options:
try:
val = kwargs[x]
del kwargs[x]
options[x] = True
options[x] = val
except: pass
e = events[name]

Loading…
Cancel
Save