diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:55:32 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 00:55:32 +0100 |
commit | fc80a9494dd50700d85c5ee9bd84fd7f7fc8be98 (patch) | |
tree | cf5bb929cdea7ad3d15f93b6f0e680a65febc249 /todo | |
parent | 64c2937d4707da5d1976c837d45128cfdf8b6db3 (diff) | |
download | bin-fc80a9494dd50700d85c5ee9bd84fd7f7fc8be98.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-x | todo | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |