vote up 0 vote down star

Hi All,

I'm currently using the toprettyxml() function of the xml.dom module in a python script and I have some troubles with the newlines. If don't use the newl parameter or if I use toprettyxml(newl='\n') actually it displays several new lines instead of only one.

For instance

f = open(filename, 'w')
f.write(dom1.toprettyxml(encoding='UTF-8'))
f.close()

displayed:

<params>


    <param name="Level" value="#LEVEL#"/>


    <param name="Code" value="281"/>


</params>

Does anyone know where the problem comes from and how I can use it? FYI I'm using Python 2.6.1

flag

64% accept rate

1 Answer

vote up 0 vote down

Are you viewing the resulting file on Windows? If so, try using toprettyxml(newl='\r\n').

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.