From 5d34c2e0baebf13b886eda46287da969b1304f80 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 1 Apr 2008 00:02:28 -0300 Subject: [PATCH] Arreglar TupleValidator para que sea compatible con SQLObject 0.10.x. --- sercom/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sercom/model.py b/sercom/model.py index 9a3dd63..b9fddbb 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -41,7 +41,7 @@ class TupleValidator(PickleValidator): class SOTupleCol(SOPickleCol): def createValidators(self): - return [TupleValidator(name=self.name)] + return [TupleValidator(name=self.name, pickleProtocol=self.pickleProtocol)] class TupleCol(PickleCol): baseClass = SOTupleCol -- 2.43.0