mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Fix typo in Message.maildir_flags_to_tags
It has been calling _tags_to_maildir_flags instead since the beginning,
This commit is contained in:
parent
92d8eae8f1
commit
4bf82dea2d
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@ class Message(Python3StringMixIn):
|
|||
notmuch.STATUS.SUCCESS here. See there for details."""
|
||||
if not self._msg:
|
||||
raise NotInitializedError()
|
||||
return Message._tags_to_maildir_flags(self._msg)
|
||||
return Message._maildir_flags_to_tags(self._msg)
|
||||
|
||||
def __repr__(self):
|
||||
"""Represent a Message() object by str()"""
|
||||
|
|
Loading…
Reference in a new issue