From: Leandro Lucarella Date: Tue, 1 Apr 2008 03:02:28 +0000 (-0300) Subject: Arreglar TupleValidator para que sea compatible con SQLObject 0.10.x. X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/commitdiff_plain/5d34c2e0baebf13b886eda46287da969b1304f80?ds=sidebyside Arreglar TupleValidator para que sea compatible con SQLObject 0.10.x. --- 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