]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Task: Do not require confirmation for modifying recurrent tasks
authorTomas Babej <tomasbabej@gmail.com>
Mon, 19 Jan 2015 20:21:47 +0000 (21:21 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Mon, 19 Jan 2015 20:22:54 +0000 (21:22 +0100)
tasklib/task.py

index 9b3626dec070cd741b194900da813f6ae9e84db9..239e2b454e0a0978567b4866f212ef21e95df9a7 100644 (file)
@@ -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()