summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-01-12 11:50:50 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-01-12 11:52:25 -0800
commita5b8f3ed22cd1218ec2d76babb3358f371fc7647 (patch)
treec7e89537f342621a60726409a17ae36ee96ff2f9
parent5d2dad9c8e22ab6d40c6dd72e082bd50b17e85b7 (diff)
alot/commands/globals: fix typo
This is a bug, though apparently no one has run into it yet. Found through inspection.
-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 a9a85cba..efe94f13 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -856,7 +856,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()