From e46e109cab2a155f19855654c4adc1ea7d4dde6f Mon Sep 17 00:00:00 2001 From: Kai Huuhko Date: Tue, 16 Sep 2014 14:38:49 +0300 Subject: [PATCH] Eolian: Fix Constructor conversion --- efl/eolian/__init__.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/efl/eolian/__init__.pyx b/efl/eolian/__init__.pyx index 8232d48..917bde3 100644 --- a/efl/eolian/__init__.pyx +++ b/efl/eolian/__init__.pyx @@ -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