cover2cover icon indicating copy to clipboard operation
cover2cover copied to clipboard

Fix issue #12

Open nbauma109 opened this issue 11 months ago • 0 comments

b'<coverage ... </coverage>' suggests that the XML content is being treated as a byte string rather than a regular string. This often happens in Python 3 when dealing with outputs from certain operations, like those involving file reading or external data manipulation, which return data in bytes format.

The ET.tostring() function from the xml.etree.ElementTree module, by default, returns the XML content as a byte string in Python 3. By specifying encoding='unicode', ET.tostring() will return a regular string instead of a byte string.

nbauma109 avatar Mar 30 '24 14:03 nbauma109