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
cb1cc42c
Commit
cb1cc42c
authored
9 years ago
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #65 from mruwek/fix-prompt-help
Fix help in prompt mode
parents
bd24c1df
d61e19c9
knext
master
y/edit-stable
0.13
0.12
0.11
0.10.1
0.10
0.9
0.8
0.7
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
topydo/cli/Prompt.py
topydo/cli/Prompt.py
+1
-1
No files found.
topydo/cli/Prompt.py
View file @
cb1cc42c
...
...
@@ -103,7 +103,7 @@ class PromptApplication(CLIApplicationBase):
# refuse to perform operations such as 'del' and 'do' if the
# todo.txt file has been changed in the background.
if
not
self
.
is_read_only
(
subcommand
)
and
self
.
mtime
!=
mtime_after
:
if
subcommand
and
not
self
.
is_read_only
(
subcommand
)
and
self
.
mtime
!=
mtime_after
:
error
(
"WARNING: todo.txt file was modified by another application.
\
n
To prevent unintended changes, this operation was not executed."
)
continue
...
...
This diff is collapsed.
Click to expand it.
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