diff options
author | Martin Szulecki | 2014-07-30 17:04:35 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-07-30 17:04:35 +0200 |
commit | d05dca376917df68fe4e251c3a211cf9ba7eb36f (patch) | |
tree | 358cf569e031bc0bab804c7220d5182c3de2cec5 | |
parent | d34facc09effe7c18baf8f66c7237f7b4a876696 (diff) | |
download | libplist-d05dca376917df68fe4e251c3a211cf9ba7eb36f.tar.gz libplist-d05dca376917df68fe4e251c3a211cf9ba7eb36f.tar.bz2 |
cython: Fix compiler warning by actually using the Uid factory
-rw-r--r-- | cython/plist.pyx | 2 |
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 |