mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 11:28:13 +01:00
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:
parent
bf9e206925
commit
db44af75ad
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue