Updates:
        Status: WontFix

Comment #1 on issue 1721 by pekka.klarck: XML library replaces the XML-header/declaration double quote characters with single quote characters
http://code.google.com/p/robotframework/issues/detail?id=1721

XML declaration is written by ElementTree, not by the library directly, and thus we don't have direct control how it looks like. The same problem appears also in other places. If you have, for example, xml snippet:

    <elem foo="1" bar="2"></elem>

ET could write it, for example, like:

    <elem bar="2" foo="1"/>

In practice trying to keep XML fully identical as the original is simply not feasible using ET or any other general XML parser. If you want to change few places and keep original formatting 100% like it was, it is probably easier to edit the file as text.


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to