untabification

This commit is contained in:
Fredrik Lundh 2001-08-23 20:13:08 +00:00
parent 78eedce3ff
commit c266bb0594
1 changed files with 5 additions and 5 deletions

View File

@ -387,11 +387,11 @@ def dumps(self, values):
write("</fault>\n")
else:
# parameter block
# FIXME: the xml-rpc specification allows us to leave out
# the entire <params> block if there are no parameters.
# however, changing this may break older code (including
# old versions of xmlrpclib.py), so this is better left as
# is for now. See @XMLRPC3 for more information. /F
# FIXME: the xml-rpc specification allows us to leave out
# the entire <params> block if there are no parameters.
# however, changing this may break older code (including
# old versions of xmlrpclib.py), so this is better left as
# is for now. See @XMLRPC3 for more information. /F
write("<params>\n")
for v in values:
write("<param>\n")