Commit 05a1a68d authored by Bram Schoenmakers's avatar Bram Schoenmakers Committed by GitHub

Merge pull request #193 from mruwek/patch-1

Suggest to use pip3 over pip
parents 3508881d 30628621
...@@ -44,13 +44,13 @@ def main(): ...@@ -44,13 +44,13 @@ def main():
from topydo.ui.prompt.Prompt import PromptApplication from topydo.ui.prompt.Prompt import PromptApplication
PromptApplication().run() PromptApplication().run()
except ImportError: except ImportError:
error("Some additional dependencies for prompt mode were not installed, please install with 'pip install topydo[prompt]'") error("Some additional dependencies for prompt mode were not installed, please install with 'pip3 install topydo[prompt]'")
elif args[0] == 'columns': elif args[0] == 'columns':
try: try:
from topydo.ui.columns.Main import UIApplication from topydo.ui.columns.Main import UIApplication
UIApplication().run() UIApplication().run()
except ImportError: except ImportError:
error("Some additional dependencies for column mode were not installed, please install with 'pip install topydo[columns]'") error("Some additional dependencies for column mode were not installed, please install with 'pip3 install topydo[columns]'")
else: else:
CLIApplication().run() CLIApplication().run()
except IndexError: except IndexError:
......
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