From: Patrick Totzke Date: Tue, 6 Dec 2011 20:22:43 +0000 (+0000) Subject: fix format string in Message.__unicode__ X-Git-Tag: 0.11_rc1~59 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=c4d824bc1ee4e49c86315cd3e7f0a4756aff3811 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. --- 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()),