mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
python: fix argument for filenames_destroy
This commit is contained in:
parent
fb063e20fb
commit
87aa5aea56
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class Filenames(Python3StringMixIn):
|
||||||
return "\n".join(self)
|
return "\n".join(self)
|
||||||
|
|
||||||
_destroy = nmlib.notmuch_filenames_destroy
|
_destroy = nmlib.notmuch_filenames_destroy
|
||||||
_destroy.argtypes = [NotmuchMessageP]
|
_destroy.argtypes = [NotmuchFilenamesP]
|
||||||
_destroy.restype = None
|
_destroy.restype = None
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
|
|
Loading…
Reference in a new issue