projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92d8eae
)
Fix typo in Message.maildir_flags_to_tags
author
Jaime Velasco Juan
<jsagarribay@gmail.com>
Mon, 4 Jul 2016 18:49:31 +0000
(19:49 +0100)
committer
David 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
patch
|
blob
|
history
diff --git
a/bindings/python/notmuch/message.py
b/bindings/python/notmuch/message.py
index bf809008a9709874992d78dba4c5c409497aed0e..fc177eb2b1557cb68c7c5c17bcedaf974b563869 100644
(file)
--- 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_fl
ags(self._msg)
+ return Message._
maildir_flags_to_t
ags(self._msg)
def __repr__(self):
"""Represent a Message() object by str()"""