Improve help strings

Follow oslo.config style guide for help strings better to create
more consistent help strings:
* Capitalize first word of each help string
* Finish help strings with "."
* Improve wording, capitalization

Change-Id: Ia9698807430d8b6b0862dfb8a7f8874703a88ff1
This commit is contained in:
Andreas Jaeger 2014-02-07 22:00:21 +01:00
parent 303ed5edc7
commit 42f631f202
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class InstallVenv(object):
parser.add_option('-n', '--no-site-packages',
action='store_true',
help="Do not inherit packages from global Python "
"install")
"install.")
return parser.parse_args(argv[1:])[0]