Commit c8249705 authored by Martijn Pieters's avatar Martijn Pieters

Whoops, lossed an indent there.

parent 40da6b54
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.69 $'[11:-2] __version__='$Revision: 1.70 $'[11:-2]
import re, sys, os, urllib, time, random, cgi, codecs import re, sys, os, urllib, time, random, cgi, codecs
from BaseRequest import BaseRequest from BaseRequest import BaseRequest
...@@ -663,10 +663,10 @@ class HTTPRequest(BaseRequest): ...@@ -663,10 +663,10 @@ class HTTPRequest(BaseRequest):
for x in item: for x in item:
# loop through the records # loop through the records
if hasattr(x, attr): if hasattr(x, attr):
# If the record has the attribute # If the record has the attribute
# convert it to a tuple and set it # convert it to a tuple and set it
value=tuple(getattr(x,attr)) value=tuple(getattr(x,attr))
setattr(x,attr,value) setattr(x,attr,value)
else: else:
# the form does not have the split key # the form does not have the split key
if form.has_key(key): if form.has_key(key):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment