X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/1b823cd6b9d36b549704828005317c2296e75ec5..713a62ad561d01162b4ccfe3e6a30117e391d99e:/tasklib/task.py diff --git a/tasklib/task.py b/tasklib/task.py index 38aeed7..79899ba 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -518,6 +518,10 @@ class Task(TaskResource): def pending(self): return self['status'] == six.text_type('pending') + @property + def active(self): + return self['start'] is not None + @property def saved(self): return self['uuid'] is not None or self['id'] is not None @@ -877,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