From d05dca376917df68fe4e251c3a211cf9ba7eb36f Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Wed, 30 Jul 2014 17:04:35 +0200 Subject: cython: Fix compiler warning by actually using the Uid factory --- cython/plist.pyx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cython/plist.pyx b/cython/plist.pyx index a78e74c..b148687 100644 --- a/cython/plist.pyx +++ b/cython/plist.pyx @@ -848,5 +848,7 @@ cdef object plist_t_to_node(plist_t c_plist, bint managed=True): return Date_factory(c_plist, managed) if t == PLIST_DATA: return Data_factory(c_plist, managed) + if t == PLIST_UID: + return Uid_factory(c_plist, managed) if t == PLIST_NONE: return None -- cgit v1.1-32-gdbae