]> git.cworth.org Git - notmuch/commitdiff
python: str.decode() doesn't like kwargs in python 2.5 patches/0.11-1_bpo60+1
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Mon, 2 Jan 2012 16:07:53 +0000 (17:07 +0100)
committerDavid Bremner <bremner@debian.org>
Sat, 28 Jan 2012 00:09:07 +0000 (20:09 -0400)
Recent changes introduced lots of unicodification of strings, mostly in
the form of .decode('utf-8', errors='ignore'). However, python 2.5 does
not like the errors keyword argument and complains. It does work when
used as a simple arg though, so that's what this patch does.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Backported to 0.11 by David Bremner <david@tethera.net>

Conflicts:

bindings/python/notmuch/database.py
bindings/python/notmuch/filename.py
bindings/python/notmuch/message.py
bindings/python/notmuch/thread.py

bindings/python/notmuch/message.py
bindings/python/notmuch/thread.py

index ce8e7181b2743f162843c8f2d387baf3515d3f9c..49a58d1fb2cfd8e10e6c6db6850151f0dc0fe48f 100644 (file)
@@ -427,7 +427,7 @@ class Message(object):
         header = Message._get_header(self._msg, header)
         if header == None:
             raise NotmuchError(STATUS.NULL_POINTER)
-        return header.decode('UTF-8', errors='ignore')
+        return header.decode('UTF-8', 'ignore')
 
     def get_filename(self):
         """Returns the file path of the message file
index 5058846d7ce89d4bbd0cbef5fb6bab06079e3047..ea25e6e4501048051f7052d4ab50cb4d47b3fcef 100644 (file)
@@ -325,7 +325,7 @@ class Thread(object):
         authors = Thread._get_authors(self._thread)
         if authors is None:
             return None
-        return authors.decode('UTF-8', errors='ignore')
+        return authors.decode('UTF-8', 'ignore')
 
     def get_subject(self):
         """Returns the Subject of 'thread'
@@ -338,7 +338,7 @@ class Thread(object):
         subject = Thread._get_subject(self._thread)
         if subject is None:
             return None
-        return subject.decode('UTF-8', errors='ignore')
+        return subject.decode('UTF-8', 'ignore')
 
     def get_newest_date(self):
         """Returns time_t of the newest message date