Fix b' in session.flash when storing a LazyT

probably Fixes #2110 as putting T('foo') in the session was the only way I could reproduce it
This commit is contained in:
Leonel Câmara
2019-03-04 17:11:04 +00:00
committed by GitHub
parent 0fc807e5cf
commit 701b6e1ebd
+1 -1
View File
@@ -451,7 +451,7 @@ class lazyT(object):
def pickle_lazyT(c):
return str, (c.xml(),)
return str, (to_native(c.xml()),)
copyreg.pickle(lazyT, pickle_lazyT)