X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fmessage.py;h=bf809008a9709874992d78dba4c5c409497aed0e;hp=bdbe5012bd0f175eb69fc36603722198a4fa72b6;hb=6a833a6e83865f6999707cc30768d07e1351c2cb;hpb=5bc5471c54f30642f866d4537f7a1a6b35222dc5 diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py index bdbe5012..bf809008 100644 --- a/bindings/python/notmuch/message.py +++ b/bindings/python/notmuch/message.py @@ -12,7 +12,7 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with notmuch. If not, see . +along with notmuch. If not, see . Copyright 2010 Sebastian Spaeth Jesse Rosenthal @@ -300,7 +300,7 @@ class Message(Python3StringMixIn): raise NotInitializedError() tags_p = Message._get_tags(self._msg) - if tags_p == None: + if not tags_p: raise NullPointerError() return Tags(tags_p, self)