diff options
| author | Jaime Velasco Juan <jsagarribay@gmail.com> | 2016-07-04 19:49:31 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-07-29 05:57:13 +0900 |
| commit | 4bf82dea2d84ffeb17eb335ed97fca9496cae7f1 (patch) | |
| tree | 001415500e71a58d081dd5bb4be2812e7c7d728c /bindings | |
| parent | 92d8eae8f182e4eebc87d76f8d4f37e6c018883a (diff) | |
Fix typo in Message.maildir_flags_to_tags
It has been calling _tags_to_maildir_flags instead since the beginning,
Diffstat (limited to 'bindings')
| -rw-r--r-- | bindings/python/notmuch/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py index bf809008..fc177eb2 100644 --- a/bindings/python/notmuch/message.py +++ b/bindings/python/notmuch/message.py @@ -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()""" |
