From 82677387ef53d211fc481edb9c1b65ec04e18533 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sat, 10 Feb 2007 19:55:15 +0000 Subject: [PATCH 1/1] =?utf8?q?Bugfix.=20M=C3=A1s=20problemas=20con=20SQLOb?= =?utf8?q?ject=20y=20constructores=20lindos.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sercom/model.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sercom/model.py b/sercom/model.py index be46634..56e9853 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -377,9 +377,9 @@ class CasoDePrueba(SQLObject): #{{{ def __init__(self, enunciado=None, nombre=None, parametros=(), retorno=None, tiempo_cpu=None, descripcion=None, **kargs): - SQLObject.__init__(self, enunciadoID=enunciado.id, nombre=nombre, - parametros=parametros, retorno=retorno, tiempo_cpu=tiempo_cpu, - descripcion=descripcion, **kargs) + SQLObject.__init__(self, enunciadoID=enunciado and enunciado.id, + nombre=nombre, parametros=parametros, retorno=retorno, + tiempo_cpu=tiempo_cpu, descripcion=descripcion, **kargs) def __repr__(self): return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \ -- 2.43.0