Commit 0e5bb3ba authored by Jacek Sowiński's avatar Jacek Sowiński

Make using flags possible with `topydo prompt`

parent 67a11cff
...@@ -17,13 +17,22 @@ ...@@ -17,13 +17,22 @@
""" Entry file for the Python todo.txt CLI. """ """ Entry file for the Python todo.txt CLI. """
import sys import sys
import getopt
from topydo.cli.CLI import CLIApplication from topydo.cli.CLI import CLIApplication
from topydo.cli.Prompt import PromptApplication from topydo.cli.Prompt import PromptApplication
def main(): def main():
""" Main entry point of the CLI. """ """ Main entry point of the CLI. """
try: try:
if sys.argv[1] == 'prompt': args = sys.argv[1:]
try:
opts, args = getopt.getopt(args, "c:d:ht:v")
except getopt.GetoptError as e:
error(str(e))
sys.exit(1)
if args[0] == 'prompt':
PromptApplication().run() PromptApplication().run()
else: else:
CLIApplication().run() CLIApplication().run()
......
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