diff --git a/kivy/_event.pyx b/kivy/_event.pyx index 8573caef6..ff060fa31 100644 --- a/kivy/_event.pyx +++ b/kivy/_event.pyx @@ -52,7 +52,7 @@ cdef class EventDispatcher(object): attrs_found = cp[__cls__] = {} attrs = dir(__cls__) for k in attrs: - uattr = getattr(__cls__, k) + uattr = getattr(__cls__, k, None) if not isinstance(uattr, Property): continue if k == 'touch_down' or k == 'touch_move' or k == 'touch_up':