diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:52:57 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:52:57 +0100 |
commit | 64c2937d4707da5d1976c837d45128cfdf8b6db3 (patch) | |
tree | 9e33725c981aaed075b5339e2480da4fb7309dac /todo | |
parent | 121354a6519863ef51bdb6054b563061bbe17ba0 (diff) | |
download | bin-64c2937d4707da5d1976c837d45128cfdf8b6db3.tar.xz |
todo: color_bold description
Diffstat (limited to 'todo')
-rwxr-xr-x | todo | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -124,7 +124,9 @@ def main(): entry = todo_dict[t_id] output = first_line(t_id, entry) if 'description' in entry: - output += "\n {}".format(entry['description']) + description = entry['description'] + text = color_bold(description) + output += "\n {}".format(text) if 'url' in entry: output += "\n URL: {}".format(entry['url']) if 'context' in entry: |