- 
                Notifications
    You must be signed in to change notification settings 
- Fork 51
Description
I noticed that the xacro command under melodic adds the encoding attribute to the xml tag of the generated urdf file. This gives problems with the underlying lxml parser. That complaints about:
ValueError: Unicode strings with encoding declaration are not supported. Please use bytes input or XML fragments without declaration.
Here by a minimal example to reproduce this error under ros melodic:
import roslib; roslib.load_manifest('urdfdom_py')
import rospy
# Import the module
from urdf_parser_py.urdf import URDF
robot = URDF.from_xml_string("<?xml version=\"1.0\" encoding=\"utf-8\"?><robot name='myrobot'></robot></xml>")
The version without the encoding attribute works correctly
import roslib; roslib.load_manifest('urdfdom_py')
import rospy
# Import the module
from urdf_parser_py.urdf import URDF
robot = URDF.from_xml_string("<?xml version=\"1.0\" "?><robot name='myrobot'></robot></xml>")
I noticed this when using the URDF.from_parameter_server() command that now no longer works (It still works with ros kinetic)
A simple solution would be to remove the encoding tag from the parameter string before passing it to the parser. But im not sure if this is the way to go. If you agree with this solution i can open a PR to fix this.