fix incorrect retyping of "event_path" as "event, path" (i wasn't paying enough
attention)
This commit is contained in:
parent
4015275afc
commit
d60c441ce2
1 changed files with 2 additions and 2 deletions
|
@ -184,11 +184,11 @@ class EventHook(object):
|
|||
|
||||
if not hooks:
|
||||
self.log.trace("not calling non-hooked event \"%s\" (params: %s)",
|
||||
[event, path, kwargs])
|
||||
[event_path, kwargs])
|
||||
return returns
|
||||
|
||||
self.log.trace("calling event: \"%s\" (params: %s)",
|
||||
[event_path,kwargs])
|
||||
[event_path, kwargs])
|
||||
start = time.monotonic()
|
||||
|
||||
event = self._make_event(kwargs)
|
||||
|
|
Loading…
Reference in a new issue