[Zope-Checkins] CVS: Zope/lib/python/ZTUtils - Zope.py:1.12
Casey Duncan
casey@zope.com
Thu, 3 Jul 2003 17:45:04 -0400
Update of /cvs-repository/Zope/lib/python/ZTUtils
In directory cvs.zope.org:/tmp/cvs-serv24688
Modified Files:
Zope.py
Log Message:
Add missing return statement
=== Zope/lib/python/ZTUtils/Zope.py 1.11 => 1.12 ===
--- Zope/lib/python/ZTUtils/Zope.py:1.11 Mon Oct 7 15:43:15 2002
+++ Zope/lib/python/ZTUtils/Zope.py Thu Jul 3 17:44:59 2003
@@ -102,6 +102,7 @@
def filterChildren(self, children):
if self._values_filter:
return self._values_filter(LazyFilter(children, skip=self.skip))
+ return children
class TreeMaker(TreeSkipMixin, TreeMaker):
_getChildren = TreeMaker.getChildren