X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/b0b1b863292eb7b5777cfb25a6bc5d1ab0b8282f..dc2ec94de3a7e10ace14a2f9540ef1455de5b2d2:/tasklib/task.py?ds=sidebyside diff --git a/tasklib/task.py b/tasklib/task.py index 38386ef..f070e6b 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 @@ -885,7 +889,7 @@ class TaskWarrior(object): data_location = os.path.expanduser(data_location) if create and not os.path.exists(data_location): os.makedirs(data_location) - self.config['data.location'] = data_location, + self.config['data.location'] = data_location self.tasks = TaskQuerySet(self)