diff --git a/open-todo-txt.py b/open-todo-txt.py index e445d11..28aa165 100755 --- a/open-todo-txt.py +++ b/open-todo-txt.py @@ -93,11 +93,11 @@ def get_prio_string(task_string): def log_done_to_taskwarrior(task_string, date): - overrides = "rc.context=none rc.hooks=0" + overrides = ["rc.context=none", "rc.verbose=nothing", "rc.hooks=0"] cmd = [ "task", - overrides, + *overrides, "log", f'"{task_string}"', f"entry:{date}",