Improve help strings for sslutils module

As https://review.openstack.org/#/c/71997/ got merged, we need
to update oslo-incubator to make projects using oslo.messaging
and sslutils working.

Change-Id: I9f49dc08df01a27c54f1ebe2a7c7cb8c4b889018
This commit is contained in:
Dina Belova
2014-02-25 21:44:24 +04:00
parent b154ff879b
commit 1d456c058b

View File

@@ -24,15 +24,15 @@ ssl_opts = [
cfg.StrOpt('ca_file',
default=None,
help="CA certificate file to use to verify "
"connecting clients"),
"connecting clients."),
cfg.StrOpt('cert_file',
default=None,
help="Certificate file to use when starting "
"the server securely"),
"the server securely."),
cfg.StrOpt('key_file',
default=None,
help="Private key file to use when starting "
"the server securely"),
"the server securely."),
]