From: Tomas Babej Date: Mon, 19 Jan 2015 20:21:47 +0000 (+0100) Subject: Task: Do not require confirmation for modifying recurrent tasks X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/7d13bbc51e188d603ddd15c607b0bc2b9fee80d4 Task: Do not require confirmation for modifying recurrent tasks --- 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()