[Zope-Checkins] CVS: Zope/lib/python/Products/ZCTextIndex - ZCTextIndex.py:1.35.2.5
Florent Guillaume
fg@nuxeo.com
Tue, 28 Jan 2003 10:49:47 -0500
Update of /cvs-repository/Zope/lib/python/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv13720
Modified Files:
Tag: Zope-2_6-branch
ZCTextIndex.py
Log Message:
Style.
=== Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py 1.35.2.4 => 1.35.2.5 ===
--- Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py:1.35.2.4 Tue Jan 28 09:20:50 2003
+++ Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py Tue Jan 28 10:49:45 2003
@@ -238,8 +238,10 @@
def manage_addZCTextIndex(self, id, extra=None, REQUEST=None,
RESPONSE=None):
"""Add a text index"""
- if REQUEST is None: URL3 = None
- else: URL3 = REQUEST.URL3
+ if REQUEST is None:
+ URL3 = None
+ else:
+ URL3 = REQUEST.URL3
return self.manage_addIndex(id, 'ZCTextIndex', extra,
REQUEST, RESPONSE, URL3)