summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-10-18 17:02:19 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2011-10-18 17:02:19 +0100
commitf141523dd1056a9f79028d2e10db58cf04f2a2d6 (patch)
tree683c28f602d23933569c24241e2f49a011f18d89 /alot
parent2f5bf9a3afa3b189cfbfc28f127c7da05db989aa (diff)
fix issue #103
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/taglist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/taglist.py b/alot/commands/taglist.py
index fd8a52d8..610dc2c1 100644
--- a/alot/commands/taglist.py
+++ b/alot/commands/taglist.py
@@ -8,5 +8,5 @@ MODE = 'taglist'
class TaglistSelectCommand(Command):
def apply(self, ui):
tagstring = ui.current_buffer.get_selected_tag()
- cmd = SearchCommand(query='tag:%s' % tagstring)
+ cmd = SearchCommand(query=['tag:\"%s\"' % tagstring])
ui.apply_command(cmd)