diff options
| author | David Bremner <david@tethera.net> | 2022-01-09 09:20:56 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2022-01-09 09:20:56 -0400 |
| commit | 22e04ed01acc115b7fb25b60231014f585f11c4a (patch) | |
| tree | c7b78303e305426e298b0f57a31f94581c932ce5 /bindings/python-cffi | |
| parent | d99b0d4dc8b9262373e2d0ae158dd8336fc28e41 (diff) | |
| parent | 9e7ea628e6bddbd7345d053a3daf14af74896cc2 (diff) | |
Merge branch 'release'
Diffstat (limited to 'bindings/python-cffi')
| -rw-r--r-- | bindings/python-cffi/notmuch2/_message.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python-cffi/notmuch2/_message.py b/bindings/python-cffi/notmuch2/_message.py index a460d8c1..aa1cb875 100644 --- a/bindings/python-cffi/notmuch2/_message.py +++ b/bindings/python-cffi/notmuch2/_message.py @@ -371,14 +371,14 @@ class Message(base.NotmuchObject): This method will only work if the message was created from a thread. Otherwise it will yield no results. - :returns: An iterator yielding :class:`Message` instances. + :returns: An iterator yielding :class:`OwnedMessage` instances. :rtype: MessageIter """ # The notmuch_messages_valid call accepts NULL and this will # become an empty iterator, raising StopIteration immediately. # Hence no return value checking here. msgs_p = capi.lib.notmuch_message_get_replies(self._msg_p) - return MessageIter(self, msgs_p, db=self._db) + return MessageIter(self, msgs_p, db=self._db, msg_cls=OwnedMessage) def __hash__(self): return hash(self.messageid) |
