Skip to content

Fix issue #12#13

Open
nbauma109 wants to merge 2 commits intorix0rrr:masterfrom
nbauma109:patch-1
Open

Fix issue #12#13
nbauma109 wants to merge 2 commits intorix0rrr:masterfrom
nbauma109:patch-1

Conversation

@nbauma109
Copy link
Copy Markdown

@nbauma109 nbauma109 commented Mar 30, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant