]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/query.py
python: remove Database.db_p
[notmuch] / bindings / python / notmuch / query.py
index 4abba5bdcd165fa277e60c5fc6593c2a2bc84d91..b11a399d2cf7f592922e1c09d06880c5b63d0ea2 100644 (file)
@@ -100,7 +100,7 @@ class Query(object):
         # create reference to parent db to keep it alive
         self._db = db
         # create query, return None if too little mem available
-        query_p = Query._create(db.db_p, _str(querystr))
+        query_p = Query._create(db._db, _str(querystr))
         if not query_p:
             raise NullPointerError
         self._query = query_p