Commit a0f4f64e authored by Bram Schoenmakers's avatar Bram Schoenmakers

Fix the %z placeholder

Or: I should just run my tests first.
parent 85ecf5b1
...@@ -193,7 +193,7 @@ class ListFormatParser(object): ...@@ -193,7 +193,7 @@ class ListFormatParser(object):
# relative completion date # relative completion date
'X': lambda t: 'x ' + humanize_date(t.completion_date()) if t.is_completed() else '', 'X': lambda t: 'x ' + humanize_date(t.completion_date()) if t.is_completed() else '',
'z': lambda t: color_block if config().colors() else ' ', 'z': lambda t: color_block(t) if config().colors() else ' ',
'Z': lambda t: color_block(t, p_safe=False) if config().colors() else ' ', 'Z': lambda t: color_block(t, p_safe=False) if config().colors() else ' ',
} }
......
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