Improve update.py docstring

The --nodeps flag was not documented previously, and some of the
names in the existing docs were inconsistent.

Change-Id: Ic845ca2399052809ae814e6543733ace735f1bd9
This commit is contained in:
Ben Nemec 2014-03-17 15:51:38 +00:00
parent 9024e021e7
commit ec77c4f08f
1 changed files with 8 additions and 2 deletions

View File

@ -41,15 +41,21 @@ configuration file, or:
$> python update.py --config-file ../myproj/myproj/openstack/common.conf
--dest-dir ../myproj
Where ../myproject is a project directory, but the configuration file is
Where ../myproj is a project directory, but the configuration file is
stored in a sub-directory, or:
$> python update.py --modules wsgi,utils --base myproj ../myproj
$> python update.py --modules wsgi,utils --base myproj --dest-dir ../myproj
Where ../myproject is a project directory, but we explicitly specify
Where ../myproj is a project directory, but we explicitly specify
the modules to copy and the base destination module
$> python update.py --modules wsgi,utils --nodeps --base myproj ../myproj
Where ../myproj is a project directory, but we explicitly specify
the modules to copy, the base destination module, and do not want to
automatically copy the dependencies of the specified modules
Obviously, the first way is the easiest!
"""