From: Tomas Babej Date: Sun, 22 Mar 2015 20:52:39 +0000 (+0100) Subject: TaskWarrior: Default config - even 2.4.3 contains the bulk=0 enhancement X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/713a62ad561d01162b4ccfe3e6a30117e391d99e?hp=033ea1c349a1c8255667e9399e1dd41595863a6b TaskWarrior: Default config - even 2.4.3 contains the bulk=0 enhancement --- diff --git a/tasklib/task.py b/tasklib/task.py index f070e6b..79899ba 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -881,7 +881,7 @@ class TaskWarrior(object): 'recurrence.confirmation': 'no', # Necessary for modifying R tasks # 2.4.3 onwards supports 0 as infite bulk, otherwise set just # arbitrary big number which is likely to be large enough - 'bulk': 0 if self.version > VERSION_2_4_3 else 100000, + 'bulk': 0 if self.version >= VERSION_2_4_3 else 100000, } # Set data.location override if passed via kwarg