summaryrefslogtreecommitdiff
path: root/src/mailman/database
diff options
context:
space:
mode:
authorMark Sapiro2016-12-30 05:55:58 +0000
committerMark Sapiro2016-12-30 05:55:58 +0000
commit435db9e0ad03ae92dc23778dfb37cae6b27ce798 (patch)
tree90d8c8f9a8427adbbbecb58e11e1f251b3de4ab0 /src/mailman/database
parent635993f670ba1e820f0ff6be292be07ffe48cae8 (diff)
downloadmailman-435db9e0ad03ae92dc23778dfb37cae6b27ce798.tar.gz
mailman-435db9e0ad03ae92dc23778dfb37cae6b27ce798.tar.zst
mailman-435db9e0ad03ae92dc23778dfb37cae6b27ce798.zip
Diffstat (limited to 'src/mailman/database')
-rw-r--r--src/mailman/database/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/database/types.py b/src/mailman/database/types.py
index 28a99043e..b5fa0626f 100644
--- a/src/mailman/database/types.py
+++ b/src/mailman/database/types.py
@@ -97,7 +97,7 @@ class SAUnicode(TypeDecorator):
@compiles(SAUnicode)
def default_sa_unicode(element, compiler, **kw):
- return compiler.visit_Unicode(element, **kw)
+ return compiler.visit_unicode(element, **kw)
@compiles(SAUnicode, 'mysql')