Hi all!
In my project I generate an xml file, which is autoformatted with an
external tool. However, the external tool uses a different quote for the
xml declaration. lxml with the code
tree.write(
os.path.join(project_dir, 'artifact.xml'),
pretty_print=True,
xml_declaration=True,
encoding='utf-8')
produces
<?xml version="1.0" encoding="UTF-8"?>
but the external tool autoformats it to:
<?xml version='1.0' encoding='UTF-8'?>
Is it possible to change the quoting of the generated xml declaration?
thanks
_______________________________________________
lxml - The Python XML Toolkit mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/lxml.python.org/
Member address: [email protected]