Commit 735e748d authored by Bram Schoenmakers's avatar Bram Schoenmakers

Print due/start dates at the end of each todo item

parent 3e7b2479
......@@ -46,7 +46,7 @@ class TodoWidget(urwid.WidgetWrap):
def __init__(self, p_todo, p_number):
# pass a None todo list, since we won't use %i or %I here
prio_formatter = ListFormatParser(None, "%{(}p{)}")
text_formatter = ListFormatParser(None, "%s %k")
text_formatter = ListFormatParser(None, "%s %k\n%h")
todo_text = text_formatter.parse(p_todo)
priority_text = prio_formatter.parse(p_todo)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment