]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Arreglar TupleValidator para que sea compatible con SQLObject 0.10.x.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 1 Apr 2008 03:02:28 +0000 (00:02 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 1 Apr 2008 03:24:04 +0000 (00:24 -0300)
sercom/model.py

index 9a3dd636a6749767c39a778093c8a7955861e020..b9fddbb5aa9e23de23735b7d74756c8c307798dc 100644 (file)
@@ -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