Fixed client_bounding_boxes example script (#1962)
* Fix: Changed path to egg file to make it work * Update CHANGELOG
This commit is contained in:
parent
0fa8dd311c
commit
3161253fa1
|
@ -1,7 +1,7 @@
|
|||
## Latest
|
||||
* Better steering in manual control
|
||||
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
||||
|
||||
* Fixed client_bounding_boxes.py example script
|
||||
|
||||
## CARLA 0.9.6
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import os
|
|||
import sys
|
||||
|
||||
try:
|
||||
sys.path.append(glob.glob('**/carla-*%d.%d-%s.egg' % (
|
||||
sys.path.append(glob.glob('../carla/dist/carla-*%d.%d-%s.egg' % (
|
||||
sys.version_info.major,
|
||||
sys.version_info.minor,
|
||||
'win-amd64' if os.name == 'nt' else 'linux-x86_64'))[0])
|
||||
|
|
Loading…
Reference in New Issue