aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/plugin/nm_vim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/nm_vim.py b/vim/plugin/nm_vim.py
index 2d62035..8494278 100644
--- a/vim/plugin/nm_vim.py
+++ b/vim/plugin/nm_vim.py
@@ -191,7 +191,7 @@ class Search(NMBuffer):
if not subj:
subj = t.get_subject()
- tags = str(t.get_tags())
+ tags = ' '.join(t.get_tags())
line = (u'%-12s %3s/%3s %-20.20s | %s (%s)'%(datestr, t.get_matched_messages(), t.get_total_messages(),
authors, subj, tags)).encode('utf-8')
self._results.put((line, t.get_thread_id()))