[Mpuls-commits] r223 - in waska/trunk: . waskaweb/controllers
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Nov 25 17:44:01 CET 2008
Author: torsten
Date: 2008-11-25 17:44:00 +0100 (Tue, 25 Nov 2008)
New Revision: 223
Modified:
waska/trunk/ChangeLog.txt
waska/trunk/waskaweb/controllers/case_overview.py
Log:
Fixed issue 671
Modified: waska/trunk/ChangeLog.txt
===================================================================
--- waska/trunk/ChangeLog.txt 2008-11-14 17:01:46 UTC (rev 222)
+++ waska/trunk/ChangeLog.txt 2008-11-25 16:44:00 UTC (rev 223)
@@ -1,3 +1,9 @@
+2008-11-25 Torsten Irlaender <torsten.irlaender at intevation.de>
+
+ Fixed issue671
+
+ * waskaweb/controllers/case_overview.py: Fixed call of nonexistent function.
+
2008-11-14 Torsten Irlaender <torsten.irlaender at intevation.de>
Fixed issue652
Modified: waska/trunk/waskaweb/controllers/case_overview.py
===================================================================
--- waska/trunk/waskaweb/controllers/case_overview.py 2008-11-14 17:01:46 UTC (rev 222)
+++ waska/trunk/waskaweb/controllers/case_overview.py 2008-11-25 16:44:00 UTC (rev 223)
@@ -473,7 +473,7 @@
filtered = []
for case in case_bundle.getCases(filtered_cases):
state = case.getState()
- if filter_inconsistent and (not state.phasesAreConsistent() and case.isOlderThan(INCONSISTENCY_CHECK_AFTER)):
+ if filter_inconsistent and (not state.phasesAreConsistent() and case.isYoungerThan(INCONSISTENCY_CHECK_AFTER)):
continue
if state.getState() in allowedstates:
filtered.append(case.id)
More information about the Mpuls-commits
mailing list