summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cython/plist.pyx2
1 files changed, 2 insertions, 0 deletions
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