summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2001-08-23 20:13:08 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2001-08-23 20:13:08 (GMT)
commitc266bb059466a44a3bd656ef35c802b8bbf270fc (patch)
treeb2e70e56aaa2f16e1715cd754f53c7476ae5cb90
parent78eedce3ffabc0c8d5af988ab7f72d3749f995db (diff)
downloadcpython-c266bb059466a44a3bd656ef35c802b8bbf270fc.zip
cpython-c266bb059466a44a3bd656ef35c802b8bbf270fc.tar.gz
cpython-c266bb059466a44a3bd656ef35c802b8bbf270fc.tar.bz2
untabification
-rw-r--r--Lib/xmlrpclib.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py
index 51e31de..7a982e4 100644
--- a/Lib/xmlrpclib.py
+++ b/Lib/xmlrpclib.py
@@ -387,11 +387,11 @@ class Marshaller:
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")