[Formed-commits] r319 - in trunk: . formed/formed/model

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Mar 16 15:43:05 CET 2009


Author: teichmann
Date: 2009-03-16 15:43:03 +0100 (Mon, 16 Mar 2009)
New Revision: 319

Modified:
   trunk/ChangeLog
   trunk/formed/formed/model/exprtree.py
Log:
Expression engine: Forget to call today with context.



Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-03-16 13:56:19 UTC (rev 318)
+++ trunk/ChangeLog	2009-03-16 14:43:03 UTC (rev 319)
@@ -1,5 +1,9 @@
 2009-03-16	Sascha L. Teichmann <teichmann at intevation.de>
 
+	* formed/formed/model/exprtree.py: Forget to call today with context.
+
+2009-03-16	Sascha L. Teichmann <teichmann at intevation.de>
+
 	* formed/formed/io/document.py: Fixed syntax typo.
 
 2009-03-16	Sascha L. Teichmann <teichmann at intevation.de>

Modified: trunk/formed/formed/model/exprtree.py
===================================================================
--- trunk/formed/formed/model/exprtree.py	2009-03-16 13:56:19 UTC (rev 318)
+++ trunk/formed/formed/model/exprtree.py	2009-03-16 14:43:03 UTC (rev 319)
@@ -148,7 +148,7 @@
 
 class Today(Node):
 
-    def eval(self):
+    def eval(self, ctx):
         return date.today()
 
 class DateNode(Node):



More information about the Formed-commits mailing list