cython: Fix compiler warning by actually using the Uid factory

This commit is contained in:
Martin Szulecki
2014-07-30 17:04:35 +02:00
parent d34facc09e
commit d05dca3769
+2
View File
@@ -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