aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/EventManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EventManager.py b/src/EventManager.py
index ab6e4034..6e227a28 100644
--- a/src/EventManager.py
+++ b/src/EventManager.py
@@ -149,11 +149,11 @@ class EventRoot(object):
path_str = self._path_str(path)
if not path_str in self._hooks:
self.log.trace("not calling non-hooked event \"%s\" (params: %s)",
- [path_str, kwargs])
+ [path_str, str(kwargs)])
return returns
self.log.trace("calling event: \"%s\" (params: %s)",
- [path_str, kwargs])
+ [path_str, str(kwargs)])
start = time.monotonic()
hooks = self._hooks[path_str]