summaryrefslogtreecommitdiffstats
path: root/cython/plist.pxd
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2013-03-19 06:06:01 +0100
committerGravatar Nikias Bassen2013-03-19 06:06:01 +0100
commit927c81a7d6cc0a42d6a3b6487f661626af193f34 (patch)
tree8be1637e6815180d18430b936cf5632a1e2f1935 /cython/plist.pxd
parent1eb804e3a2a7e39771deb4b50f38e21d500f9423 (diff)
downloadlibplist-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.pxd2
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)