summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-17 01:04:28 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-17 01:04:28 +0100
commit97e7057792ca4a517e9ec5c2b2dc88bef5d9b536 (patch)
treeb7c8d22a46ca8d6c2f0677d3451e8836b6c8c981
parent93da37330f00b18b01466085e64da33c77fb039c (diff)
downloadtodo-97e7057792ca4a517e9ec5c2b2dc88bef5d9b536.tar.xz
todo: remove debug print statements
-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]