[PATCH] python: Fix database.add_message
Dylan Baker
dylan at pnwbakers.com
Mon Sep 11 14:35:59 PDT 2017
b10ce6bc23002d48916b1b2f375480e7540e3164 introduced a new index_file
method as a replacement for add_message. It helpfully made add_message
an alias for index_file, unfortunately it got the signature wrong by
explicitly passing self as an argument.
cc: Daniel Kahn Gillmor <dkg at fifthhorseman.net>
---
bindings/python/notmuch/database.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bindings/python/notmuch/database.py b/bindings/python/notmuch/database.py
index a2c025eb..f553e9d0 100644
--- a/bindings/python/notmuch/database.py
+++ b/bindings/python/notmuch/database.py
@@ -471,7 +471,7 @@ class Database(object):
def add_message(self, filename, sync_maildir_flags=False):
"""Deprecated alias for :meth:`index_file`
"""
- self.index_file(self, filename, sync_maildir_flags=sync_maildir_flags)
+ self.index_file(filename, sync_maildir_flags=sync_maildir_flags)
_remove_message = nmlib.notmuch_database_remove_message
_remove_message.argtypes = [NotmuchDatabaseP, c_char_p]
--
2.14.1
More information about the notmuch
mailing list