summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 498e78b5..396bc06b 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -855,7 +855,7 @@ class ComposeCommand(Command):
if settings.get('compose_ask_tags'):
comp = TagsCompleter(ui.dbman)
tagsstring = yield ui.prompt('Tags', completer=comp)
- tags = [t for t in tagsstring.splie(',') if t]
+ tags = [t for t in tagsstring.split(',') if t]
if tags is None:
raise CommandCanceled()