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
744f9f61
Commit
744f9f61
authored
Nov 01, 2014
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the prompt a bit.
parent
4615ce49
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
topydo/lib/DCommand.py
topydo/lib/DCommand.py
+1
-1
topydo/lib/DeleteCommand.py
topydo/lib/DeleteCommand.py
+1
-1
topydo/lib/DoCommand.py
topydo/lib/DoCommand.py
+1
-1
No files found.
topydo/lib/DCommand.py
View file @
744f9f61
...
...
@@ -52,7 +52,7 @@ class DCommand(Command):
self
.
out
(
"
\
n
"
.
join
(
pretty_print_list
(
p_todos
,
filters
)))
def
prompt_text
(
self
):
return
"Yes or no? [
n
] "
return
"Yes or no? [
y/N
] "
def
prefix
(
self
):
""" Prefix to use when printing a todo. """
...
...
topydo/lib/DeleteCommand.py
View file @
744f9f61
...
...
@@ -25,7 +25,7 @@ class DeleteCommand(DCommand):
super
(
DeleteCommand
,
self
).
__init__
(
p_args
,
p_todolist
,
p_out
,
p_err
,
p_prompt
)
def
prompt_text
(
self
):
return
"Also remove subtasks? [
n
] "
return
"Also remove subtasks? [
y/N
] "
def
prefix
(
self
):
return
"Removed: "
...
...
topydo/lib/DoCommand.py
View file @
744f9f61
...
...
@@ -34,7 +34,7 @@ class DoCommand(DCommand):
self
.
out
(
pretty_print
(
new_todo
,
[
self
.
todolist
.
pp_number
()]))
def
prompt_text
(
self
):
return
"Also mark subtasks as done? [
n
] "
return
"Also mark subtasks as done? [
y/N
] "
def
prefix
(
self
):
return
"Completed: "
...
...
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