summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-03-10 22:07:35 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-03-10 22:07:35 +0000
commit57242300d75e0ac0a908be92ed3994c73cf63132 (patch)
tree94489249237b69d0955c67a055b3c570b2b2a57c /alot/buffers.py
parent3740741d91d54d9d6bc0a4d777eb57497b017606 (diff)
fix: misleading statusline in search mode
.. said (n threads) where n was actually the number of matching messages. this is a hotfix that simply changes this string issue #178
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 9bb247f2..8182caba 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -158,7 +158,7 @@ class SearchBuffer(Buffer):
Buffer.__init__(self, ui, self.body)
def __str__(self):
- formatstring = '[search] for "%s" (%d thread%s)'
+ formatstring = '[search] for "%s" (%d message%s)'
return formatstring % (self.querystring, self.result_count,
's' * (not (self.result_count == 1)))