Added missing structures on blist.pxd.
[python-purple] / conversation.pyx
index a00d0ed..c13578a 100644 (file)
 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
-cimport conversation
+cimport purple
 
 cdef class Conversation:
     """ Conversation class """
     cdef conversation.PurpleConversation *__conv
 
-    def __cinit__(self):
+    def __init__(self):
         conversation.c_purple_conversations_init()
 
     def conversation_new(self, type, acc, char *name):