summaryrefslogtreecommitdiffstats
path: root/todo
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:55:32 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:55:32 +0100
commit24e6cb113107a3373a3c053b0070d7b3b3fab51d (patch)
tree75947b408b8dda11861230a87e9d5c86a631a5c2 /todo
parente96c30f6ad573704061acd1b8970dd6c4b8c54cb (diff)
downloadtodo-24e6cb113107a3373a3c053b0070d7b3b3fab51d.tar.xz
todo: loop over context array and add each to string
This commit changes the format of the todo file to use a table for the contexts instead of just a string
Diffstat (limited to 'todo')
-rwxr-xr-xtodo5
1 files changed, 4 insertions, 1 deletions
diff --git a/todo b/todo
index a533940..5673a1d 100755
--- a/todo
+++ b/todo
@@ -130,7 +130,10 @@ def main():
if 'url' in entry:
output += "\n URL: {}".format(entry['url'])
if 'context' in entry:
- output += "\n Contexts: {}".format(entry['context'])
+ context_line = '\n Context:'
+ for c in entry['context']:
+ context_line += ' {}'.format(c)
+ output += context_line
print(output)