[Zope-Checkins] CVS: Zope/lib/python/ZPublisher - HTTPRequest.py:1.61.6.4

Martijn Pieters mj@zope.com
Fri, 19 Jul 2002 22:08:04 -0400


Update of /cvs-repository/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv5559

Modified Files:
      Tag: Zope-2_5-branch
	HTTPRequest.py 
Log Message:
Merge missed indent fix from trunk.


=== Zope/lib/python/ZPublisher/HTTPRequest.py 1.61.6.3 => 1.61.6.4 ===
                             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):