aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/filename.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/notmuch/filename.py')
-rw-r--r--bindings/python/notmuch/filename.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/filename.py b/bindings/python/notmuch/filename.py
index 969931a4..0c2e0d52 100644
--- a/bindings/python/notmuch/filename.py
+++ b/bindings/python/notmuch/filename.py
@@ -93,7 +93,7 @@ class Filenames(Python3StringMixIn):
raise NotmuchError(STATUS.NOT_INITIALIZED)
while self._valid(self._files):
- yield Filenames._get(self._files)
+ yield Filenames._get(self._files).decode('utf-8', errors='ignore')
self._move_to_next(self._files)
self._files = None