From c4d824bc1ee4e49c86315cd3e7f0a4756aff3811 Mon Sep 17 00:00:00 2001 From: Patrick Totzke Date: Tue, 6 Dec 2011 20:22:43 +0000 Subject: [PATCH] fix format string in Message.__unicode__ Since 2b0116119160f2dc83, Message.__str__ doesn't construct a hash containing the thread data before constructing the formatstring. This changes the formatstring to accept positional parameters instead of a hash. --- bindings/python/notmuch/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py index f95e50e2..ce8e7181 100644 --- a/bindings/python/notmuch/message.py +++ b/bindings/python/notmuch/message.py @@ -799,7 +799,7 @@ class Message(object): return unicode(self).encode('utf-8') def __unicode__(self): - format = "%(from)s (%(date)s) (%(tags)s)" + format = "%s (%s) (%s)" return format % (self.get_header('from'), self.get_tags(), date.fromtimestamp(self.get_date()), -- 2.43.0