[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/common - UnIndex.py:1.3.4.1

Andreas Jung andreas@zope.com
Mon, 10 Sep 2001 13:21:42 -0400


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

Modified Files:
      Tag: Zope-2_4-branch
	UnIndex.py 
Log Message:
fixed typo


=== Zope/lib/python/Products/PluginIndexes/common/UnIndex.py 1.3 => 1.3.4.1 ===
 
 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