From 97e7057792ca4a517e9ec5c2b2dc88bef5d9b536 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Wed, 17 Dec 2014 01:04:28 +0100 Subject: todo: remove debug print statements --- todo | 3 --- 1 file changed, 3 deletions(-) diff --git a/todo b/todo index 21bb429..a803bba 100755 --- a/todo +++ b/todo @@ -109,15 +109,12 @@ def first_line(entry_id, entry): def main(): arguments = docopt(__doc__, version='todo 0.0.1.alpha') config = parse_args(arguments) - print(arguments) todo_dict = toml.load(config.todo_file) unsorted = OrderedDict(sorted(todo_dict.items())) todo_dict = sort_dict(unsorted, config.sort_key, config.reverse) - print(todo_dict) - print('todo file: {}'.format(config.todo_file)) for t_id in todo_dict: entry = todo_dict[t_id] -- cgit v1.2.3-54-g00ecf