From 97e40a2aedf90b86d2bdf81afcf32c3d774ce500 Mon Sep 17 00:00:00 2001 From: Sid1057 Date: Wed, 4 Aug 2021 13:30:35 +0300 Subject: [PATCH] vehicle name bugfix --- PythonAPI/examples/visualize_multiple_sensors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PythonAPI/examples/visualize_multiple_sensors.py b/PythonAPI/examples/visualize_multiple_sensors.py index 95db8acb2..6ad1985a3 100644 --- a/PythonAPI/examples/visualize_multiple_sensors.py +++ b/PythonAPI/examples/visualize_multiple_sensors.py @@ -278,7 +278,7 @@ def run_simulation(args, client): # Instanciating the vehicle to which we attached the sensors - bp = world.get_blueprint_library().filter('charger2020')[0] + bp = world.get_blueprint_library().filter('charger_2020')[0] vehicle = world.spawn_actor(bp, random.choice(world.get_map().get_spawn_points())) vehicle_list.append(vehicle) vehicle.set_autopilot(True)