mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
Fix Database().create_query() to actually initialize the Query with the correct object.
We were passing the internal pointer to the notmuch_database_t object to Query(), but it should be initialized with the Database() object itself. This rightfully raised an exception. Yay, for thorough sanity checking.
This commit is contained in:
parent
c3239d3eb4
commit
63c5a6d77d
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ class Database(object):
|
|||
# Raise a NotmuchError if not initialized
|
||||
self._verify_initialized_db()
|
||||
|
||||
return Query(self._db, querystring)
|
||||
return Query(self, querystring)
|
||||
|
||||
def __repr__(self):
|
||||
return "'Notmuch DB " + self.get_path() + "'"
|
||||
|
|
Loading…
Reference in a new issue