[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/PathIndex - PathIndex.py:1.12

Andreas Jung andreas@zope.com
Tue, 20 Nov 2001 15:30:31 -0500


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/PathIndex
In directory cvs.zope.org:/tmp/cvs-serv3237

Modified Files:
	PathIndex.py 
Log Message:
a level parameter passed as string will be converted to int



=== Zope/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py 1.11 => 1.12 ===
             level = default_level
         else:
-            level = path[1]
+            level = int(path[1])
             path  = path[0]
 
         comps = self.splitPath(path)