From 86bbbb471cde3a0f434275afff5c5f95b144590a Mon Sep 17 00:00:00 2001 From: Jonathan Wayne Parrott Date: Thu, 4 Feb 2016 09:52:10 -0800 Subject: [PATCH] Fixes #168 --- datastore/api/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore/api/tasks.py b/datastore/api/tasks.py index 164b4bc2c861..e200d9cbac79 100644 --- a/datastore/api/tasks.py +++ b/datastore/api/tasks.py @@ -111,7 +111,7 @@ def list_command(client, args): def delete_command(client, args): """Deletes a task.""" - mark_done(client, args.task_id) + delete_task(client, args.task_id) print('Task {} deleted.'.format(args.task_id))