Gail Bowman
Results
1
comments of
Gail Bowman
The line print(ET.tostring(into)) prints as a byte string for me; i.e. prefixed by "b'" and ending with "'". To fix that change the line to: print(ET.tostring(into).decode()) I am using python...