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
44811b80
Commit
44811b80
authored
Dec 29, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #90 from mruwek/column-ui-launch
Add `topydo columns` subcommand to launch column-ui
parents
7eca1de9
0b2ee2cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
topydo/cli/UILoader.py
topydo/cli/UILoader.py
+6
-0
No files found.
topydo/cli/UILoader.py
View file @
44811b80
...
@@ -45,6 +45,12 @@ def main():
...
@@ -45,6 +45,12 @@ def main():
PromptApplication
().
run
()
PromptApplication
().
run
()
except
ImportError
:
except
ImportError
:
error
(
"You have to install prompt-toolkit to run prompt mode."
)
error
(
"You have to install prompt-toolkit to run prompt mode."
)
elif
args
[
0
]
==
'columns'
:
try
:
from
topydo.ui.Main
import
UIApplication
UIApplication
().
run
()
except
ImportError
:
error
(
"You have to install urwid to run column mode."
)
else
:
else
:
CLIApplication
().
run
()
CLIApplication
().
run
()
except
IndexError
:
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