]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/threads.py
python: fix NULL pointer tests
[notmuch] / bindings / python / notmuch / threads.py
index 225f524651a9df3c4f1b22141066ca0631def2c9..a6441640605b13bf909d8a7e77c5cc609e98718a 100644 (file)
@@ -14,7 +14,7 @@ for more details.
 You should have received a copy of the GNU General Public License
 along with notmuch.  If not, see <http://www.gnu.org/licenses/>.
 
-Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
+Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
 """
 
 from notmuch.globals import (
@@ -176,5 +176,5 @@ class Threads(Python3StringMixIn):
 
     def __del__(self):
         """Close and free the notmuch Threads"""
-        if self._threads is not None:
+        if self._threads:
             self._destroy(self._threads)