[EDIT] add line to readme

This commit is contained in:
Sem van der Hoeven
2021-03-10 22:01:06 +01:00
parent be19b109f1
commit 022f19a459
2 changed files with 3 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ It gives a neat presentation of all your projects, which you can assign tasks to
### requirements:
- python 3.x
- curses (install with `pip install windows-curses`)
Download the file from the [releases page](https://github.com/SemvdH/terminal-project-management/releases) and run `python tpm.py`

2
tpm.py
View File

@@ -281,6 +281,8 @@ def create_task(projects: list,project_index: int, stdscr):
window.refresh()
textpad = Textbox(scr2, insert_mode=True)
task_name = textpad.edit()
task_name = task_name[:-1]