mirror of https://github.com/kivy/pyjnius.git
fix NotImplemented not found
This commit is contained in:
parent
54097ccacb
commit
d226263174
|
@ -68,7 +68,7 @@ cdef class PythonJavaClass(object):
|
|||
'\nJava method name:', method_name,
|
||||
'\nSignature: ({}){}'.format(''.join(args_signature), ret_signature),
|
||||
'\n=======================================\n']))
|
||||
raise NotImplemented('The method {} is not implemented'.format(key))
|
||||
raise NotImplementedError('The method {} is not implemented'.format(key))
|
||||
|
||||
return py_method(*args)
|
||||
|
||||
|
|
Loading…
Reference in New Issue