diff options
Diffstat (limited to 'cython')
-rw-r--r-- | cython/plist.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cython/plist.pyx b/cython/plist.pyx index 4365d7b..dce5bec 100644 --- a/cython/plist.pyx +++ b/cython/plist.pyx @@ -779,7 +779,7 @@ cdef object plist_t_to_node(plist_t c_plist, bint managed=True): if t == PLIST_UINT: return Integer_factory(c_plist, managed) if t == PLIST_KEY: - return Integer_factory(c_plist, managed) + return Key_factory(c_plist, managed) if t == PLIST_REAL: return Real_factory(c_plist, managed) if t == PLIST_STRING: |