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 | e96c30f6ad573704061acd1b8970dd6c4b8c54cb (patch) | |
tree | 6e1e46b3f2c87d74f34564ad175c6b0d3fe8e5bf | |
parent | 53612fc0a33fda95810dbe0195ab4881f5a40633 (diff) | |
download | todo-e96c30f6ad573704061acd1b8970dd6c4b8c54cb.tar.xz |
todo: color_bold description
-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: |