py3: object doesn't accept kwargs

This commit is contained in:
Mathieu Virbel 2012-12-28 18:51:50 +01:00 committed by Dusty Phillips
parent fe421d2401
commit 823ce7f7e2
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ cdef class EventDispatcher(object):
def __init__(self, **kwargs):
cdef str func, name, key
cdef dict properties
super(EventDispatcher, self).__init__(**kwargs)
super(EventDispatcher, self).__init__()
# Auto bind on own handler if exist
properties = self.properties()