X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fmessage.py;h=bf809008a9709874992d78dba4c5c409497aed0e;hp=d7f029f8789d43faeca117e4febec70ede109506;hb=6a833a6e83865f6999707cc30768d07e1351c2cb;hpb=8dc8495010057202b725ac029831c03f4e3ab6bd diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py index d7f029f8..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 @@ -229,7 +229,7 @@ class Message(Python3StringMixIn): #Returns NULL if any error occurs. header = Message._get_header(self._msg, _str(header)) - if not header: + if header == None: raise NullPointerError() return header.decode('UTF-8', 'ignore')