]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/filename.py
python: str.decode() doesn't like kwargs in python 2.5
[notmuch] / bindings / python / notmuch / filename.py
index 0c2e0d52b9d14f976a806dd3cd2ee63f71b98094..51dae202d5d656963a977739ae053ef55b35adb5 100644 (file)
@@ -93,7 +93,7 @@ class Filenames(Python3StringMixIn):
             raise NotmuchError(STATUS.NOT_INITIALIZED)
 
         while self._valid(self._files):
-            yield Filenames._get(self._files).decode('utf-8', errors='ignore')
+            yield Filenames._get(self._files).decode('utf-8', 'ignore')
             self._move_to_next(self._files)
 
         self._files = None