[Mpuls-commits] r445 - in wasko/trunk: . waskaweb/model
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Mon Mar 30 18:30:41 CEST 2009
Author: teichmann
Date: 2009-03-30 18:30:39 +0200 (Mon, 30 Mar 2009)
New Revision: 445
Modified:
wasko/trunk/ChangeLog.txt
wasko/trunk/waskaweb/model/exprtree.py
Log:
Expr engine: Re-enable print in out function.
Modified: wasko/trunk/ChangeLog.txt
===================================================================
--- wasko/trunk/ChangeLog.txt 2009-03-30 15:11:57 UTC (rev 444)
+++ wasko/trunk/ChangeLog.txt 2009-03-30 16:30:39 UTC (rev 445)
@@ -1,3 +1,7 @@
+2009-03-30 Sascha L. Teichmann <sascha.teichmann at intevation.de>
+
+ * waskaweb/model/exprtree.py: Re-enable print in out function.
+
2009-03-30 Torsten Irlaender <torsten.irlaender at intevation.de>
* waskaweb/i18n/de/LC_MESSAGES/waskaweb.po: Version 1.0-rc1
Modified: wasko/trunk/waskaweb/model/exprtree.py
===================================================================
--- wasko/trunk/waskaweb/model/exprtree.py 2009-03-30 15:11:57 UTC (rev 444)
+++ wasko/trunk/waskaweb/model/exprtree.py 2009-03-30 16:30:39 UTC (rev 445)
@@ -171,6 +171,7 @@
def eval(self, ctx):
e = self.parent.eval(ctx)
+ print >> sys.stderr, "OUT: %s" % repr(e)
return e
class IThenElse(Node):
More information about the Mpuls-commits
mailing list