aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/notmuch/filename.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/filename.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/filename.py')
-rw-r--r--bindings/python/notmuch/filename.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/filename.py b/bindings/python/notmuch/filename.py
index 469b6a5..322e6bf 100644
--- a/bindings/python/notmuch/filename.py
+++ b/bindings/python/notmuch/filename.py
@@ -89,7 +89,7 @@ class Filenames(Python3StringMixIn):
This is the main function that will usually be used by the
user."""
- if self._files is None:
+ if not self._files:
raise NotmuchError(STATUS.NOT_INITIALIZED)
while self._valid(self._files):