]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Bugfix. Tutor no tiene alumno.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 8 Mar 2007 15:02:53 +0000 (15:02 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 8 Mar 2007 15:02:53 +0000 (15:02 +0000)
sercom/model.py

index dc1beedfff39005a0526619b788f48cb17a7a097..24e811a4b6cd1f29581c32a182cc02a352a2b6a5 100644 (file)
@@ -656,7 +656,7 @@ class Grupo(Entregador): #{{{
     def remove_tutor(self, docente):
         if isinstance(docente, DocenteInscripto):
             docente = docente.id
-        t = Tutor.selectBy(grupo=self, alumnoID=alumno, baja=None)
+        t = Tutor.selectBy(grupo=self, docenteID=docente, baja=None)
         t.baja = DateTimeCol.now()
 
     def __repr__(self):