You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this project works well under Linux but not under Windows.
This is due to the fact that the separators are mixed into the parsing process. If the urdf file contains Linux separators "/" to define paths one will end up mixing Linux sep. with windows since in the current implementation os.path.sep is used, which in this case it's going to return \\.
Can you advise an easy fix at this point?
The text was updated successfully, but these errors were encountered:
Thanks for reporting! As far as I understand I assume a file name prefix like package:// would look like package:\\ in Windows which is not the case, right? (I couldn't find any information on this). I will create a fix for this.
Currently, this project works well under Linux but not under Windows.
This is due to the fact that the separators are mixed into the parsing process. If the urdf file contains Linux separators "/" to define paths one will end up mixing Linux sep. with windows since in the current implementation os.path.sep is used, which in this case it's going to return
\\.
Can you advise an easy fix at this point?
The text was updated successfully, but these errors were encountered: