X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/85af7d862d8d778edcdbc5c9bee5e37e48abe82e..a9bcbe2471a30df596a931063e30bd5f878a7886:/pirate_add_shift_recurrence.py diff --git a/pirate_add_shift_recurrence.py b/pirate_add_shift_recurrence.py index 7eb5c77..0266fc5 100644 --- a/pirate_add_shift_recurrence.py +++ b/pirate_add_shift_recurrence.py @@ -2,7 +2,7 @@ import sys import os -from tasklib.task import TaskWarrior +from tasklib import TaskWarrior time_attributes = ('wait', 'scheduled') @@ -18,11 +18,11 @@ def is_new_local_recurrence_child_task(task): return True tw = TaskWarrior(data_location=os.path.dirname(os.path.dirname(sys.argv[0]))) -tw.config.update(dict(recurrence="no")) +tw.overrides.update(dict(recurrence="no", hooks="no")) def hook_shift_recurrence(task): if is_new_local_recurrence_child_task(task): - parent = tw.tasks.get(uuid=task['parent']) + parent = tw.tasks.get(uuid=task['parent']['uuid']) parent_due_shift = task['due'] - parent['due'] for attr in time_attributes: if parent[attr]: