From 1d456c058b2a78bc5401e4678f2848ec2b0add82 Mon Sep 17 00:00:00 2001 From: Dina Belova Date: Tue, 25 Feb 2014 21:44:24 +0400 Subject: [PATCH] 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 --- openstack/common/sslutils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openstack/common/sslutils.py b/openstack/common/sslutils.py index 98b3f34..4a589e8 100644 --- a/openstack/common/sslutils.py +++ b/openstack/common/sslutils.py @@ -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."), ]