python: fix argument for filenames_destroy

This commit is contained in:
Daniel Kahn Gillmor 2015-12-12 14:22:12 -05:00 committed by Justus Winter
parent fb063e20fb
commit 87aa5aea56

View file

@ -123,7 +123,7 @@ class Filenames(Python3StringMixIn):
return "\n".join(self)
_destroy = nmlib.notmuch_filenames_destroy
_destroy.argtypes = [NotmuchMessageP]
_destroy.argtypes = [NotmuchFilenamesP]
_destroy.restype = None
def __del__(self):