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 | 707db0a7903dd03b0812f625a2f9b87e7927c0e2 (patch) | |
tree | 7c182c75a59065117f849876c030a7eee4a79bea | |
parent | 8e18b52c168b03bdfa8905b48353c5e784bb6444 (diff) | |
download | bin-707db0a7903dd03b0812f625a2f9b87e7927c0e2.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] |