From 713a62ad561d01162b4ccfe3e6a30117e391d99e Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sun, 22 Mar 2015 21:52:39 +0100 Subject: [PATCH 1/1] TaskWarrior: Default config - even 2.4.3 contains the bulk=0 enhancement --- tasklib/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2