]> rtime.felk.cvut.cz Git - notmuch.git/commitdiff
Fix typo in Message.maildir_flags_to_tags
authorJaime Velasco Juan <jsagarribay@gmail.com>
Mon, 4 Jul 2016 18:49:31 +0000 (19:49 +0100)
committerDavid Bremner <david@tethera.net>
Thu, 28 Jul 2016 20:57:13 +0000 (05:57 +0900)
It has been calling _tags_to_maildir_flags instead since the beginning,

bindings/python/notmuch/message.py

index bf809008a9709874992d78dba4c5c409497aed0e..fc177eb2b1557cb68c7c5c17bcedaf974b563869 100644 (file)
@@ -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()"""