]> 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: Add active property
authorTomas Babej <tomasbabej@gmail.com>
Sun, 22 Mar 2015 19:55:49 +0000 (20:55 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Sun, 22 Mar 2015 19:55:49 +0000 (20:55 +0100)
tasklib/task.py

index 38aeed7826e9cbfce15f2b8df73a1d24e5a49f84..f070e6b3b8bd103ecad6d00a04123b84d524402c 100644 (file)
@@ -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