From: Ruilin Huang Date: Wed, 27 Jan 2016 08:21:59 +0000 (+0000) Subject: fix %x string format to compatible with Python 3.5 X-Git-Tag: rel_1_1_0b1~81^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b9f6f407ceedde247982501a6ae406242c80b4a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix %x string format to compatible with Python 3.5 --- diff --git a/doc/build/core/custom_types.rst b/doc/build/core/custom_types.rst index 22dd52050a..f3a3b2bd0e 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: