Give EventHook objects their full delimited event name

This commit is contained in:
jesopo 2018-09-29 09:24:10 +01:00
parent 7c7e5553d1
commit df2ebfb315

View file

@ -89,7 +89,7 @@ class EventHook(object):
self._context_hooks = {}
def _make_event(self, kwargs):
return Event(self.name, **kwargs)
return Event(self._get_path(), **kwargs)
def _get_path(self):
path = []