summaryrefslogtreecommitdiffstats
path: root/cython/plist.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'cython/plist.pyx')
-rw-r--r--cython/plist.pyx1
1 files changed, 0 insertions, 1 deletions
diff --git a/cython/plist.pyx b/cython/plist.pyx
index d4f8d68..0149ffa 100644
--- a/cython/plist.pyx
+++ b/cython/plist.pyx
@@ -499,7 +499,6 @@ cdef class Date(Node):
499 cpdef object get_value(self): 499 cpdef object get_value(self):
500 cdef int32_t secs = 0 500 cdef int32_t secs = 0
501 cdef int32_t usecs = 0 501 cdef int32_t usecs = 0
502 cdef object result
503 plist_get_date_val(self._c_node, &secs, &usecs) 502 plist_get_date_val(self._c_node, &secs, &usecs)
504 return ints_to_datetime(secs, usecs) 503 return ints_to_datetime(secs, usecs)
505 504