X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/6d00a5883955f81023d305d2157cab7fd78d5bdc..4d996d9a8b118836ad4de537ead8144b78bf530f:/src/sc_suwi?ds=sidebyside diff --git a/src/sc_suwi b/src/sc_suwi index bcb0e8c..e4de31d 100755 --- a/src/sc_suwi +++ b/src/sc_suwi @@ -21,10 +21,6 @@ import cgitb; cgitb.enable() #XXX HORRIBLE PASSWD = conf.get('general', 'cgipw') -def cmp_correccion_padron(e1, e2): - 'Compara 2 entregas, según el padrón del alumno.' - return cmp(e1.inscripto.padron, e2.inscripto.padron) - def http_header_html(req): return 'Content-type: text/html\r\n\r\n' @@ -367,7 +363,8 @@ def correcciones(req, entrega_id): r = '

Entrega %d.%d del curso %d-%d-%d

\n' \ % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso) correcciones = list(e.correcciones) - correcciones.sort(cmp_correccion_padron) + # Ordena comparando padron + correcciones.sort(lambda x, y: cmp(x.inscripto.padron, y.inscripto.padron)) r += correccion_header() for c in correcciones: r += correccion_row(c)