Fixed client_bounding_boxes example script (#1962)

* Fix: Changed path to egg file to make it work

* Update CHANGELOG
This commit is contained in:
manishthani 2019-08-02 15:52:16 +02:00 committed by GitHub
parent 0fa8dd311c
commit 3161253fa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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])