ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 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 = '')

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 = '')