numero = Col()
docente = ForeignKey('Docente')
# Joins
- casosDePrueba = MultipleJoin('CasoDePrueba')
+ casosDePrueba = MultipleJoin('CasoDePrueba', joinMethodName='casosDePrueba') # XXX hack
entregas = MultipleJoin('Entrega')
cursos = RelatedJoin('Curso', intermediateTable = 'entrega')
pruebas = MultipleJoin('Prueba')
@classmethod
- def getProximoAProbar(cls, connection = None):
+ def getProximoAProbar(cls, connection=None):
try:
- return cls.select(cls.q.compila == None, limit=1,
+ return cls.select(None == cls.q.compila, limit=1,
orderBy=cls.q.llegada, connection=connection)[0]
except IndexError:
return None