[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/common - UnIndex.py:1.4
Andreas Jung
andreas@zope.com
Mon, 10 Sep 2001 13:22:20 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/common
In directory cvs.zope.org:/tmp/cvs-serv9567
Modified Files:
UnIndex.py
Log Message:
fixed typo
=== Zope/lib/python/Products/PluginIndexes/common/UnIndex.py 1.3 => 1.4 ===
from Products.PluginIndexes.common.util import parseIndexRequest
-import sys,exceptions
+import sys
_marker = []
@@ -389,7 +389,7 @@
# experimental code for specifing the operator
operator = record.get('operator',self.useOperator)
if not operator in self.operators :
- raise exepctions.RuntimeError,"operator not valid: %s" % operator
+ raise RuntimeError,"operator not valid: %s" % operator
# depending on the operator we use intersection or union
if operator=="or": set_func = union