Commit d05dca37 authored by Martin Szulecki's avatar Martin Szulecki

cython: Fix compiler warning by actually using the Uid factory

parent d34facc0
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment