update_path->load_manifest

This commit is contained in:
Ken Conley 2009-10-21 20:53:37 +00:00
parent 69e64aeb77
commit 5c06fd4488
5 changed files with 6 additions and 6 deletions

View File

@ -58,8 +58,8 @@ _bootstrapped = []
def load_manifest(package_name, bootstrap_version="0.7"):
"""
Update the Python sys.path with package dependencies
@param package_name: name of the package that update_path is being called from.
Update the Python sys.path with package's dependencies
@param package_name: name of the package that load_manifest() is being called from.
@type package_name: str
@param bootstrap_version: (keyword argument) do not use. Soon to be deprecated
@type bootstrap_version: str

View File

@ -42,7 +42,7 @@
## * ~/test_duration: time (in secs) to run test
##
import roslib; roslib.update_path('rostest')
import roslib; roslib.load_manifest('rostest')
import sys
import threading

View File

@ -37,7 +37,7 @@
PKG = 'test_rospy'
NAME = 'talker'
import roslib; roslib.update_path(PKG)
import roslib; roslib.load_manifest(PKG)
import sys
import rospy

View File

@ -33,6 +33,6 @@
#
# Revision $Id$
import roslib; roslib.update_path('rosdoc')
import roslib; roslib.load_manifest('rosdoc')
import rosdoc
rosdoc.main()

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
import roslib; roslib.update_path('rostopic')
import roslib; roslib.load_manifest('rostopic')
import rostopic
rostopic.rostopicmain()