aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/messages.py
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-04-30 18:52:35 +0200
committerGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-04-30 19:24:34 +0200
commit162687a99e412098729d639ed7bc27f01372cb84 (patch)
tree3502c16bfc4f7e6546f4c640b6f562ca846fa5aa /bindings/python/notmuch/messages.py
parent09fdf2b283938da1cded87ec8621aabe917a8fa5 (diff)
python: fix NULL pointer tests
Fix the NULL pointer tests in the destructors of all classes and Database.create. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings/python/notmuch/messages.py')
-rw-r--r--bindings/python/notmuch/messages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/messages.py b/bindings/python/notmuch/messages.py
index 6b024cbe..251fa3a3 100644
--- a/bindings/python/notmuch/messages.py
+++ b/bindings/python/notmuch/messages.py
@@ -184,7 +184,7 @@ class Messages(object):
def __del__(self):
"""Close and free the notmuch Messages"""
- if self._msgs is not None:
+ if self._msgs:
self._destroy(self._msgs)
def format_messages(self, format, indent=0, entire_thread=False):