X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=cnotmuch%2Fmessage.py;h=e8b24474c23ee24b403d4b5de7ff4750cdf74dd2;hp=d1498f0d86adf27e989d8560f9247a3361eef80c;hb=6efd3c82014e5f121139f89f29267714cb9c9f59;hpb=898341f7f7412bc1fd405b1b9778f84780ac15c5 diff --git a/cnotmuch/message.py b/cnotmuch/message.py index d1498f0d..e8b24474 100644 --- a/cnotmuch/message.py +++ b/cnotmuch/message.py @@ -1,4 +1,4 @@ -from ctypes import c_char_p, c_void_p, c_uint64 +from ctypes import c_char_p, c_void_p, c_int64 from datetime import date from cnotmuch.globals import nmlib, STATUS, NotmuchError from cnotmuch.tag import Tags @@ -183,7 +183,7 @@ class Message(object): _get_tags.restype = c_void_p _get_date = nmlib.notmuch_message_get_date - _get_date.restype = c_uint64 + _get_date.restype = c_int64 _get_header = nmlib.notmuch_message_get_header _get_header.restype = c_char_p