diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 01:04:28 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-17 01:04:28 +0100 |
commit | 97e7057792ca4a517e9ec5c2b2dc88bef5d9b536 (patch) | |
tree | b7c8d22a46ca8d6c2f0677d3451e8836b6c8c981 | |
parent | 93da37330f00b18b01466085e64da33c77fb039c (diff) | |
download | todo-97e7057792ca4a517e9ec5c2b2dc88bef5d9b536.tar.xz |
todo: remove debug print statements
-rwxr-xr-x | todo | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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] |