aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2018-12-05 15:23:40 +0000
committerGravatar jesopo2018-12-05 15:23:40 +0000
commitd60c441ce24e80af2231c14a274113686b23f8a8 (patch)
treebfb5342fb4e3d450cf4819c1ed5b9f19ab529588 /src
parentAdd missing ")" from last commit (diff)
signature
fix incorrect retyping of "event_path" as "event, path" (i wasn't paying enough
attention)
Diffstat (limited to 'src')
-rw-r--r--src/EventManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EventManager.py b/src/EventManager.py
index 24f57150..3d9c09e4 100644
--- a/src/EventManager.py
+++ b/src/EventManager.py
@@ -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)