diff options
| author | David Bremner <david@tethera.net> | 2020-12-25 12:56:57 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-12-25 12:56:57 -0400 |
| commit | 133188837472dacef2ef72ca8416ccd12896c189 (patch) | |
| tree | 8f8a1b615acf93d83c20a2e2ee0a24fcac1dfff0 /bindings | |
| parent | 22d9094300751ea6f995fcb5f04194b06f77db3a (diff) | |
| parent | 0cd4ec8a3bb28b8c2973f5a30bff5505f5aac8c6 (diff) | |
Merge branch 'release'
Diffstat (limited to 'bindings')
| -rw-r--r-- | bindings/python-cffi/notmuch2/_database.py | 2 | ||||
| -rw-r--r-- | bindings/python-cffi/version.txt | 2 | ||||
| -rw-r--r-- | bindings/python/notmuch/version.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python-cffi/notmuch2/_database.py b/bindings/python-cffi/notmuch2/_database.py index 5ab0f20a..868f4408 100644 --- a/bindings/python-cffi/notmuch2/_database.py +++ b/bindings/python-cffi/notmuch2/_database.py @@ -578,7 +578,7 @@ class Database(base.NotmuchObject): if exclude_tags is not None: for tag in exclude_tags: if isinstance(tag, str): - tag = str.encode('utf-8') + tag = tag.encode('utf-8') capi.lib.notmuch_query_add_tag_exclude(query_p, tag) return querymod.Query(self, query_p) diff --git a/bindings/python-cffi/version.txt b/bindings/python-cffi/version.txt index c415e1c6..8239f42d 100644 --- a/bindings/python-cffi/version.txt +++ b/bindings/python-cffi/version.txt @@ -1 +1 @@ -0.31.2 +0.31.3 diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index 0d8fdd04..0be316c2 100644 --- a/bindings/python/notmuch/version.py +++ b/bindings/python/notmuch/version.py @@ -1,3 +1,3 @@ # this file should be kept in sync with ../../../version -__VERSION__ = '0.31.2' +__VERSION__ = '0.31.3' SOVERSION = '5' |
