aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/notmuch/database.py
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2012-02-19 00:36:15 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2012-02-19 00:36:15 +0100
commitbe851ad39de11f38e1cd4f7f15f1fa952232efe2 (patch)
treeb3b06310525fb357ff68bf4d3424f08314faef0b /bindings/python/notmuch/database.py
parentab2f9fd828058d281480e9947ea346e382a7f3c8 (diff)
python: more error handling fixes
This is a follow up commit to 221c7e0b38177f5f1dbf0561580c15e8aaa49004 fixing more NULL pointer checks. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings/python/notmuch/database.py')
-rw-r--r--bindings/python/notmuch/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/database.py b/bindings/python/notmuch/database.py
index 0958ce0..6edb18b 100644
--- a/bindings/python/notmuch/database.py
+++ b/bindings/python/notmuch/database.py
@@ -159,7 +159,7 @@ class Database(object):
def _assert_db_is_initialized(self):
"""Raises :exc:`NotInitializedError` if self._db is `None`"""
- if self._db is None:
+ if not self._db:
raise NotInitializedError()
def create(self, path):