summaryrefslogtreecommitdiff
path: root/alot/commands/globals.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2017-01-12 20:45:54 +0000
committerGitHub <noreply@github.com>2017-01-12 20:45:54 +0000
commitb182ed5681ac3e32361440f1eb486a0818cc9eb0 (patch)
treeac9aafb0773a83ea2c294143d3e4c4cdd4ddff34 /alot/commands/globals.py
parent82e8cea7a99ffef14a0717715d32b8bf20a31957 (diff)
parenta5b8f3ed22cd1218ec2d76babb3358f371fc7647 (diff)
Merge pull request #963 from dcbaker/pr/fix-typo
alot/commands/globals: fix typo
Diffstat (limited to 'alot/commands/globals.py')
-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()