From 62eb74239fd74cda216393bd84e8d8da0355210f Mon Sep 17 00:00:00 2001 From: Patrice FERLET Date: Mon, 21 Nov 2011 13:21:58 +0100 Subject: [PATCH] Use QUVIcode and not "int" from _c_parse method... --- src/quvi.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quvi.pyx b/src/quvi.pyx index 17c75d7..17bf41c 100644 --- a/src/quvi.pyx +++ b/src/quvi.pyx @@ -23,7 +23,7 @@ cdef class Quvi: """Initialize quvi handle""" cquvi.quvi_init(&self._c_quvi) - cdef int _c_parse(self, char* url): + cdef cquvi.QUVIcode _c_parse(self, char* url): """Parses given url parameters""" rc = cquvi.quvi_parse(self._c_quvi, url, &self._c_m); return rc