docente = docente.id
# FIXME ídem add_miembro()
try:
- t = Tutor.selectBy(grupo=self, docenteID=alumno).getOne()
+ t = Tutor.selectBy(grupo=self, docenteID=docente).getOne()
t.baja = None # si ya existía, le sacamos la fecha de baja
return t
except SQLObjectNotFound: # creo uno nuevo
def __repr__(self):
return super(ComandoPruebaEjecutado, self).__repr__(
- 'comando=%s, entrega=%s' % (self.comando.shortrepr(),
- self.entrega.shortrepr()))
+ 'comando=%s, prueba=%s' % (self.comando.shortrepr(),
+ self.prueba.shortrepr()))
def shortrepr(self):
- return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrepr(),
+ return '%s:%s:%s' % (self.tarea.shortrepr(), self.prueba.shortrepr(),
self.caso_de_prueba.shortrepr())
#}}}