From: Daniel Kahn Gillmor Date: Sat, 12 Dec 2015 19:22:12 +0000 (-0500) Subject: python: fix argument for filenames_destroy X-Git-Tag: 0.22_rc0~85 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=87aa5aea5601a145c1163069a6d3ce7c4d190f1f;ds=sidebyside python: fix argument for filenames_destroy --- diff --git a/bindings/python/notmuch/filenames.py b/bindings/python/notmuch/filenames.py index 229f414d..96b22c65 100644 --- a/bindings/python/notmuch/filenames.py +++ b/bindings/python/notmuch/filenames.py @@ -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):