X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/f19adb2d926d6642775553db988aefee55733cc3..642103e288af6eade0bb96ba2c6afd62cfb86f84:/sercom/model.py?ds=sidebyside diff --git a/sercom/model.py b/sercom/model.py index 3fcf5db..3794c4a 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -663,7 +663,7 @@ class Grupo(Entregador): #{{{ 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 @@ -884,11 +884,11 @@ class ComandoPruebaEjecutado(ComandoEjecutado): #{{{ 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()) #}}}