[Zope-Checkins] CVS: Zope2 - PathIndex.py:1.1.2.19
Andreas Jung
andreas@digicool.com
Wed, 23 May 2001 09:14:28 -0400
Update of /cvs-repository/Zope2/lib/python/Products/PluginIndexes/PathIndex
In directory yetix:/work/sandboxes/ajung-dropin-registry/lib/python/Products/PluginIndexes/PathIndex
Modified Files:
Tag: ajung-dropin-registry
PathIndex.py
Log Message:
bugfix
--- Updated File PathIndex.py in package Zope2 --
--- PathIndex.py 2001/05/22 14:08:41 1.1.2.18
+++ PathIndex.py 2001/05/23 13:13:05 1.1.2.19
@@ -328,6 +328,7 @@
"""
record = parseIndexRequest(request,self.id)
+ if record.keys==None: return None
# get the level parameter
level = record.get("level",0)
@@ -341,6 +342,7 @@
res = None
+ print record.keys
for k in record.keys:
rows = self.search(k,level)
res = set_func(res,rows)