diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2015-12-12 14:22:12 -0500 |
|---|---|---|
| committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2016-01-08 12:37:38 +0100 |
| commit | 87aa5aea5601a145c1163069a6d3ce7c4d190f1f (patch) | |
| tree | 82d098d6f75aad8b0fa33f14371c56b5e69e4ca0 /bindings/python | |
| parent | fb063e20fbdbe6924027a6b15a8624099800a079 (diff) | |
python: fix argument for filenames_destroy
Diffstat (limited to 'bindings/python')
| -rw-r--r-- | bindings/python/notmuch/filenames.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
