summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-05-30 17:47:13 +0100
committerpazz <patricktotzke@gmail.com>2011-05-30 17:47:13 +0100
commitce81244b58470f11c2e4faa31ef0269f3d0a8d48 (patch)
tree6f6927d6a8136863e67ca85a99197a8933e9933e
parent47b0ad328b9e91ed907a443d398163eccdf6da8b (diff)
fix typo
-rw-r--r--alot/buffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/buffer.py b/alot/buffer.py
index 3b6f0ee2..99632409 100644
--- a/alot/buffer.py
+++ b/alot/buffer.py
@@ -170,7 +170,7 @@ class SearchBuffer(Buffer):
class SingleThreadBuffer(Buffer):
def __init__(self, ui, thread):
self.message_count = thread.get_total_messages()
- self.subject = thread.get_subject()
+ self.thread = thread
self.messages = [(0, m) for m in thread.get_toplevel_messages()]
self.rebuild()
Buffer.__init__(self, ui, self.body, 'thread')