From 7d13bbc51e188d603ddd15c607b0bc2b9fee80d4 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Mon, 19 Jan 2015 21:21:47 +0100 Subject: [PATCH] Task: Do not require confirmation for modifying recurrent tasks --- tasklib/task.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasklib/task.py b/tasklib/task.py index 9b3626d..239e2b4 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -670,7 +670,8 @@ class TaskWarrior(object): self.config = { 'data.location': os.path.expanduser(data_location), 'confirmation': 'no', - 'dependency.confirmation': 'no', # See TW-1483 or taskrc man page + 'dependency.confirmation': 'no', # See TW-1483 or taskrc man page + 'recurrence.confirmation': 'no', # Necessary for modifying R tasks } self.tasks = TaskQuerySet(self) self.version = self._get_version() -- 2.39.2