aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:58:10 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-17 00:58:10 +0100
commit70aabd4c82bde916f5af8a7c23f04b267995482d (patch)
treeb707fa973ada06a418af317601a2b3a09913908e
parentfc80a9494dd50700d85c5ee9bd84fd7f7fc8be98 (diff)
downloadbin-70aabd4c82bde916f5af8a7c23f04b267995482d.tar.xz
todo: print directly instead of appending to string
-rwxr-xr-xtodo15
1 files changed, 9 insertions, 6 deletions
diff --git a/todo b/todo
index 5673a1d..b13e84c 100755
--- a/todo
+++ b/todo
@@ -122,20 +122,23 @@ def main():
print('todo file: {}'.format(config.todo_file))
for t_id in todo_dict:
entry = todo_dict[t_id]
- output = first_line(t_id, entry)
+
+ print(first_line(t_id, entry))
+
if 'description' in entry:
description = entry['description']
text = color_bold(description)
- output += "\n {}".format(text)
+ print(" {}".format(text))
+
if 'url' in entry:
- output += "\n URL: {}".format(entry['url'])
+ print(" URL: {}".format(entry['url']))
+
if 'context' in entry:
- context_line = '\n Context:'
+ context_line = ' Context:'
for c in entry['context']:
context_line += ' {}'.format(c)
- output += context_line
+ print(context_line)
- print(output)
if __name__ == '__main__':
main()