]> git.cworth.org Git - notmuch/commitdiff
bindings/python-cffi: fix docstring
authorDavid Bremner <david@tethera.net>
Sun, 3 Jul 2022 20:26:46 +0000 (17:26 -0300)
committerDavid Bremner <david@tethera.net>
Tue, 5 Jul 2022 10:34:25 +0000 (07:34 -0300)
the method Database.get_message does exist any more (if it ever
did). This makes the docstring unhelpful as an example.

bindings/python-cffi/notmuch2/_message.py

index aa1cb8757bfb3b0c1555a4bb8f7f9ae57b6c4b32..d4b34e91e2f88ff367a73cfa5b311d11cbfa6b9a 100644 (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)