ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
It because your python script it printing with newline endings. Print without a newline.
Python 2:
sys.stdout.write("/path/to/file")
Python 3:
print("/path/to/file", end = '')
2 | No.2 Revision |
It because your python script it is printing with newline endings. Print without a newline.
Python 2:
sys.stdout.write("/path/to/file")
Python 3:
print("/path/to/file", end = '')