aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/tag.py
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-02-19 00:36:15 +0100
committerGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-02-19 00:36:15 +0100
commitbe851ad39de11f38e1cd4f7f15f1fa952232efe2 (patch)
treeb3b06310525fb357ff68bf4d3424f08314faef0b /bindings/python/notmuch/tag.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/tag.py')
-rw-r--r--bindings/python/notmuch/tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/tag.py b/bindings/python/notmuch/tag.py
index d2dc498c..d0f7bb40 100644
--- a/bindings/python/notmuch/tag.py
+++ b/bindings/python/notmuch/tag.py
@@ -90,7 +90,7 @@ class Tags(Python3StringMixIn):
_move_to_next.restype = None
def __next__(self):
- if self._tags is None:
+ if not self._tags:
raise NotmuchError(STATUS.NOT_INITIALIZED)
if not self._valid(self._tags):
self._tags = None