[Mpuls-commits] r576 - in wasko/branches/1.0: . waskaweb/model

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Aug 25 15:39:09 CEST 2009


Author: frank
Date: 2009-08-25 15:39:08 +0200 (Tue, 25 Aug 2009)
New Revision: 576

Modified:
   wasko/branches/1.0/ChangeLog.txt
   wasko/branches/1.0/waskaweb/model/casedocument.py
Log:
Fixed typo in Semantic error collection

Modified: wasko/branches/1.0/ChangeLog.txt
===================================================================
--- wasko/branches/1.0/ChangeLog.txt	2009-08-25 13:29:04 UTC (rev 575)
+++ wasko/branches/1.0/ChangeLog.txt	2009-08-25 13:39:08 UTC (rev 576)
@@ -1,3 +1,9 @@
+2009-08-19	Frank Koormann <frank.koormann at intevation.de>
+
+	* waskaweb/model/casedocument.py (CaseDocument.setData):
+	Fixed typo in Semantic error collection, which caused error 
+	report to crash.
+
 2009-08-14	Frank Koormann <frank.koormann at intevation.de>
 
 	Ported from trunk some fixes implemented by
@@ -13,7 +19,7 @@
 	  waskaweb/templates/administration/account_deactivated.mako: Removed
 	  optionlist. 
 
-2009-07-07	Sascha L. Teichmann	<sascha.teichmann at intevation.de>
+2009-08-07	Sascha L. Teichmann	<sascha.teichmann at intevation.de>
 
 	* waskaweb/model/semantic.py: Fixed issue426
 

Modified: wasko/branches/1.0/waskaweb/model/casedocument.py
===================================================================
--- wasko/branches/1.0/waskaweb/model/casedocument.py	2009-08-25 13:29:04 UTC (rev 575)
+++ wasko/branches/1.0/waskaweb/model/casedocument.py	2009-08-25 13:39:08 UTC (rev 576)
@@ -465,7 +465,7 @@
                         if nv != ps.getData(k): # only if it's a change
                             converted[k] = nv
                     except SematicError, inst:
-                        not_converted.append((key, v, inst.value))
+                        not_converted.append((k, v, inst.value))
 
             param_pages[page_name] = (converted, delete_vars)
 



More information about the Mpuls-commits mailing list