From 296711ec038274af5e528b7113cfc199c52bc316 Mon Sep 17 00:00:00 2001 From: Campbell Alden Date: Thu, 26 Jan 2023 13:15:18 +0900 Subject: [PATCH] New todo's are added to lists not areas --- create-template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-template.py b/create-template.py index 8f4917b..e863155 100644 --- a/create-template.py +++ b/create-template.py @@ -85,7 +85,7 @@ def createThings3Task(template, args): 'when': args.when if args.when is not None else template['when'], 'tags': args.tags if args.tags is not None else ','.join(template['tags']), 'reveal': template['reveal'], - 'area': template['area'], + 'list-id': template['area'], } params = urlencode({ k: v for k, v in values.items() if v is not None }, quote_via=quote) url = f'things:///add?{params}'