From 7d9f7182cb3dfffd7c9dcf54fc816c2b876c5f79 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 2 Jan 2019 13:06:16 +0200 Subject: Fix: mark goal status using string Will be looked up later as a string. --- projgraph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projgraph b/projgraph index db17077..a05d951 100755 --- a/projgraph +++ b/projgraph @@ -77,7 +77,7 @@ def mark_goals(tasks): for task in tasks.values(): if 'status' not in task: if not task.get('parents'): - task['status'] = goal + task['status'] = 'goal' def set_status(tasks): add_missing(tasks) -- cgit v1.2.1