[Zope-Checkins] CVS: Zope/lib/python/ZPublisher - HTTPRequest.py:1.70
Martijn Pieters
mj@zope.com
Fri, 19 Jul 2002 22:07:25 -0400
Update of /cvs-repository/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv5130/lib/python/ZPublisher
Modified Files:
HTTPRequest.py
Log Message:
Whoops, lossed an indent there.
=== Zope/lib/python/ZPublisher/HTTPRequest.py 1.69 => 1.70 ===
for x in item:
# loop through the records
if hasattr(x, attr):
- # If the record has the attribute
- # convert it to a tuple and set it
- value=tuple(getattr(x,attr))
- setattr(x,attr,value)
+ # If the record has the attribute
+ # convert it to a tuple and set it
+ value=tuple(getattr(x,attr))
+ setattr(x,attr,value)
else:
# the form does not have the split key
if form.has_key(key):