Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #12 #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Fix issue #12 #13

wants to merge 2 commits into from

Conversation

nbauma109
Copy link

@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