Fix override setting

This commit is contained in:
Marty Oehme 2021-10-31 15:44:41 +01:00
parent 63545da224
commit b02e09eea3
Signed by: Marty
GPG Key ID: B7538B8F50A1C800
1 changed files with 2 additions and 2 deletions

View File

@ -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}",