summaryrefslogtreecommitdiffstats
path: root/todo
diff options
context:
space:
mode:
Diffstat (limited to 'todo')
-rwxr-xr-xtodo3
1 files changed, 0 insertions, 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]