Skip to content

Commit b86592f

Browse files
authored
Thanks Joas Suckut!
1 parent d349f2b commit b86592f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bag_tools/scripts/cut.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def cut(inbags, outbagfile, start, duration):
5353
outbag = rosbag.Bag(outbagfile, 'w')
5454
num_messages = 0
5555
for inbag in inbags:
56-
rospy.loginfo(' Extracting messages from:', inbag)
56+
rospy.loginfo(' Extracting messages from: %s', inbag)
5757
for topic, msg, t in rosbag.Bag(inbag,'r').read_messages(start_time=start_time, end_time=end_time):
5858
outbag.write(topic, msg, t)
5959
num_messages = num_messages + 1

0 commit comments

Comments
 (0)