Eolian: Fix Constructor conversion

This commit is contained in:
Kai Huuhko 2014-09-16 14:38:49 +03:00
parent edc2be0113
commit e46e109cab
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ cdef Implement eolian_implement_to_python_obj(const Eolian_Implement *o):
return ret
cdef Constructor eolian_constructor_to_python_obj(const Eolian_Constructor *o):
cdef Constructor ret = Constructor.__new__(Implement)
cdef Constructor ret = Constructor.__new__(Constructor)
ret._set_obj(o)
return ret