bindings/python-cffi: fix docstring

the method Database.get_message does exist any more (if it ever
did). This makes the docstring unhelpful as an example.
This commit is contained in:
David Bremner 2022-07-03 17:26:46 -03:00
parent bf9e206925
commit db44af75ad

View file

@ -26,7 +26,7 @@ class Message(base.NotmuchObject):
package from Python's standard library. You could e.g. create
this as such::
notmuch_msg = db.get_message(msgid) # or from a query
notmuch_msg = db.find(msgid) # or from a query
parser = email.parser.BytesParser(policy=email.policy.default)
with notmuch_msg.path.open('rb) as fp:
email_msg = parser.parse(fp)