update comment for the if logic
This commit is contained in:
parent
abd1c5023d
commit
0ebf113617
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue