Fix invocation.

This commit is contained in:
Ryan Leckey
2013-07-15 16:56:45 -07:00
parent 2d403544fa
commit 5bd6f0d1fb

View File

@@ -45,7 +45,7 @@ class UUIDType(types.TypeDecorator):
return value
if not isinstance(value, uuid.UUID):
value = self._coerce(None, value, None, None)
value = self._coerce(value)
if dialect == 'postgresql':
return str(value)