Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
30628621
Commit
30628621
authored
Jul 31, 2017
by
Jacek Sowiński
Committed by
GitHub
Jul 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suggest to use pip3 over pip
parent
e276dcd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
topydo/ui/UILoader.py
topydo/ui/UILoader.py
+2
-2
No files found.
topydo/ui/UILoader.py
View file @
30628621
...
...
@@ -44,13 +44,13 @@ def main():
from
topydo.ui.prompt.Prompt
import
PromptApplication
PromptApplication
().
run
()
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 'pip
3
install topydo[prompt]'"
)
elif
args
[
0
]
==
'columns'
:
try
:
from
topydo.ui.columns.Main
import
UIApplication
UIApplication
().
run
()
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 'pip
3
install topydo[columns]'"
)
else
:
CLIApplication
().
run
()
except
IndexError
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment