]> 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:

SerializingObject: TW 2.4.0 does have task calc
authorTomas Babej <tomasbabej@gmail.com>
Sun, 22 Mar 2015 14:44:39 +0000 (15:44 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Sun, 22 Mar 2015 14:44:39 +0000 (15:44 +0100)
tasklib/task.py

index 72e16af4d33d612938c0ffac314e5812ef97f87e..75f218b048f28a924bc4fda9c033c3a45e31cd8f 100644 (file)
@@ -264,7 +264,7 @@ class SerializingObject(object):
                 # time zone at this point. Also None is a valid value too.
                 localized = value
         elif (isinstance(value, six.string_types)
-                and self.warrior.version > VERSION_2_4_0):
+                and self.warrior.version >= VERSION_2_4_0):
             # For strings, use 'task calc' to evaluate the string to datetime
             # available since TW 2.4.0
             args = value.split()