]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/message.py
python: fix get_property error when property doesn't exist
[notmuch] / bindings / python / notmuch / message.py
index de0fb4151e52e50c3f3eb684932b65820d74cf82..6e32b5f7ada2d825d4cd6c23403f6b6b1271691f 100644 (file)
@@ -482,7 +482,9 @@ class Message(Python3StringMixIn):
         if status != 0:
             raise NotmuchError(status)
 
-        return value.value.decode('utf-8') if value is not None else None
+        if value is None or value.value is None:
+            return None
+        return value.value.decode('utf-8')
 
     def get_properties(self, prop="", exact=False):
         """ Get the properties of the message, returning a generator of