From 00f996dea89b1a6309907708395b17e9b9021ae9 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Wed, 17 Dec 2014 00:43:12 +0100 Subject: todo: rename task variable to entry --- todo | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/todo b/todo index 0d9e1b8..ee6b90b 100755 --- a/todo +++ b/todo @@ -121,14 +121,14 @@ def main(): print('todo file: {}'.format(config.todo_file)) for t_id in todo_dict: - task = todo_dict[t_id] - output = first_line(t_id, task) - if 'description' in task: - output += "\n {}".format(task['description']) - if 'url' in task: - output += "\n URL: {}".format(task['url']) - if 'context' in task: - output += "\n Contexts: {}".format(task['context']) + entry = todo_dict[t_id] + output = first_line(t_id, entry) + if 'description' in entry: + output += "\n {}".format(entry['description']) + if 'url' in entry: + output += "\n URL: {}".format(entry['url']) + if 'context' in entry: + output += "\n Contexts: {}".format(entry['context']) print(output) -- cgit v1.2.3-54-g00ecf