summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-12-18 10:36:57 +0100
committerLucas Hoffmann <l-m-h@web.de>2017-02-25 13:19:10 +0100
commit488d843082600928902cf4cbd442f1545a0a8c59 (patch)
treeda6084c79239157d14632e82257ff681cb565674 /alot/buffers.py
parent237499e631741dbb3837e5ef99cc66f842e8a92e (diff)
Remove getter for alot.walker.PipeWalker.lines
Diffstat (limited to 'alot/buffers.py')
-rw-r--r--alot/buffers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index e9fb7a44..859f342d 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -308,7 +308,7 @@ class SearchBuffer(Buffer):
self.body.set_focus(0)
elif self.result_count < 200 or self.sort_order not in self._REVERSE:
self.consume_pipe()
- num_lines = len(self.threadlist.get_lines())
+ num_lines = len(self.threadlist.lines)
self.body.set_focus(num_lines - 1)
else:
self.rebuild(reverse=True)