]> 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: Detect string type using six properly
authorTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 11:18:35 +0000 (12:18 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 17:19:10 +0000 (18:19 +0100)
tasklib/task.py

index 0666b0f43a28386a9aa7dfb1ff588e7f17a84f59..454740078a1900325078668c215c60dc097ca4df 100644 (file)
@@ -242,7 +242,7 @@ class SerializingObject(object):
 
     def normalize_uuid(self, value):
         # Enforce sane UUID
-        if not isinstance(value, six.text_type) or value == '':
+        if not isinstance(value, six.string_types) or value == '':
             raise ValueError("UUID must be a valid non-empty string, "
                              "not: {}".format(value))