diff options
author | Nikias Bassen | 2013-03-19 06:06:01 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-03-19 06:06:01 +0100 |
commit | 927c81a7d6cc0a42d6a3b6487f661626af193f34 (patch) | |
tree | 8be1637e6815180d18430b936cf5632a1e2f1935 /cython/plist.pxd | |
parent | 1eb804e3a2a7e39771deb4b50f38e21d500f9423 (diff) | |
download | libplist-927c81a7d6cc0a42d6a3b6487f661626af193f34.tar.gz libplist-927c81a7d6cc0a42d6a3b6487f661626af193f34.tar.bz2 |
cython: fixed missing class definition for PLIST_KEY type
Diffstat (limited to 'cython/plist.pxd')
-rw-r--r-- | cython/plist.pxd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cython/plist.pxd b/cython/plist.pxd index 05f3e16..d7c70bd 100644 --- a/cython/plist.pxd +++ b/cython/plist.pxd @@ -21,7 +21,7 @@ cdef class Integer(Node): cdef class Key(Node): cpdef set_value(self, object value) - cpdef int get_value(self) + cpdef unicode get_value(self) cdef class Real(Node): cpdef set_value(self, object value) |