From 0ebf1136173b9766c2dd6606d4deb5d9ac31aa2b Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Mon, 3 Mar 2025 11:39:57 -0500 Subject: [PATCH] update comment for the if logic --- bugwarrior-check.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bugwarrior-check.py b/bugwarrior-check.py index ff93770..61e69e8 100755 --- a/bugwarrior-check.py +++ b/bugwarrior-check.py @@ -43,7 +43,10 @@ task_data_raw = get_task_data() task_data = json.loads(task_data_raw) -if "bw" in task_data["tags"] and task_data['status'] == 'completed' and is_from_cli(): +# checks if the task was added by bugwarrior (I tag them with bw) and we are +# trying to mark it completed, AND was called from the CLI (via TASK_SRC envvar +# being set) +if "bw" in task_data["tags"] and task_data["status"] == "completed" and is_from_cli(): task_data["status"] = "pending" subprocess.run(["taskopen", task_data["uuid"]], stdout=subprocess.DEVNULL)