Hi Johannes, On Wed 23 Dec 2020 at 02:34 +0100, Johannes Larsen wrote: > A typo in Database._create_query loses the exclude_tag names during the > string to utf-8 conversion. > > > The problem is fixed by this patch applied to current master (ced341e8): > > diff --git i/bindings/python-cffi/notmuch2/_database.py w/bindings/python-cffi/notmuch2/_database.py > index 5ab0f20a..868f4408 100644 > --- i/bindings/python-cffi/notmuch2/_database.py > +++ w/bindings/python-cffi/notmuch2/_database.py > @@ -581 +581 @@ class Database(base.NotmuchObject): > - tag = str.encode('utf-8') > + tag = tag.encode('utf-8') Oops yes, someone else found this a while ago and I started working on a patch but that ended up in some yak shaving when the tests I wrote for it ended up accidentally unearthing other unrelated bugs and then I lost track of this... Apologies. Anyway, this fix LGTM even if I do prefer fixes to come with tests :) But that shouldn't stop a fix from being merged I guess. Cheers Floris _______________________________________________ notmuch mailing list -- notmuch@notmuchmail.org To unsubscribe send an email to notmuch-leave@notmuchmail.org