summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:52:57 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:52:57 +0100
commite96c30f6ad573704061acd1b8970dd6c4b8c54cb (patch)
tree6e1e46b3f2c87d74f34564ad175c6b0d3fe8e5bf
parent53612fc0a33fda95810dbe0195ab4881f5a40633 (diff)
downloadtodo-e96c30f6ad573704061acd1b8970dd6c4b8c54cb.tar.xz
todo: color_bold description
-rwxr-xr-xtodo4
1 files changed, 3 insertions, 1 deletions
diff --git a/todo b/todo
index 8c88491..a533940 100755
--- a/todo
+++ b/todo
@@ -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: