summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/build/core/custom_types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/core/custom_types.rst b/doc/build/core/custom_types.rst
index 22dd52050..f3a3b2bd0 100644
--- a/doc/build/core/custom_types.rst
+++ b/doc/build/core/custom_types.rst
@@ -156,7 +156,7 @@ binary in CHAR(16) if desired::
return "%.32x" % uuid.UUID(value).int
else:
# hexstring
- return "%.32x" % value
+ return "%.32x" % value.int
def process_result_value(self, value, dialect):
if value is None: