[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndexNG - BaseNormalizer.py:1.1.2.2

Andreas Jung andreas@digicool.com
Thu, 7 Feb 2002 14:33:30 -0500


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

Modified Files:
      Tag: ajung-textindexng-branch
	BaseNormalizer.py 
Log Message:
minor fixes


=== Zope/lib/python/Products/PluginIndexes/TextIndexNG/BaseNormalizer.py 1.1.2.1 => 1.1.2.2 ===
     def normalize(self, arg):
         """ normalize the string/sequence of strings """
-
-	return self._normalizer.normalize( arg )
+        return self._normalizer.normalize( arg )
 
     __call__ = normalize