aboutsummaryrefslogtreecommitdiffstats
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
commit64c2937d4707da5d1976c837d45128cfdf8b6db3 (patch)
tree9e33725c981aaed075b5339e2480da4fb7309dac
parent121354a6519863ef51bdb6054b563061bbe17ba0 (diff)
downloadbin-64c2937d4707da5d1976c837d45128cfdf8b6db3.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: