Commit e3b461e9 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Merge pull request #25 from mruwek/prompt-fix-help

Fix help in prompt-mode
parents 83b84fa5 fc00dce0
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
import sys import sys
from topydo.cli.CLIApplicationBase import CLIApplicationBase, error from topydo.cli.CLIApplicationBase import CLIApplicationBase, error, usage
from topydo.cli.TopydoCompleter import TopydoCompleter from topydo.cli.TopydoCompleter import TopydoCompleter
from prompt_toolkit.shortcuts import get_input from prompt_toolkit.shortcuts import get_input
from prompt_toolkit.history import History from prompt_toolkit.history import History
...@@ -66,14 +66,17 @@ class PromptApplication(CLIApplicationBase): ...@@ -66,14 +66,17 @@ class PromptApplication(CLIApplicationBase):
(subcommand, args) = get_subcommand(user_input) (subcommand, args) = get_subcommand(user_input)
if self._execute(subcommand, args) != False: try:
if self.todolist.is_dirty(): if self._execute(subcommand, args) != False:
self._archive() if self.todolist.is_dirty():
self._archive()
if config().keep_sorted(): if config().keep_sorted():
self._execute(SortCommand, []) self._execute(SortCommand, [])
self.todofile.write(str(self.todolist)) self.todofile.write(str(self.todolist))
except TypeError:
usage()
def main(): def main():
""" Main entry point of the CLI. """ """ Main entry point of the CLI. """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment