From a378d420e0e83cef2cef0d8ba2865aff0fb5d0fd Mon Sep 17 00:00:00 2001 From: wangxiyuan Date: Fri, 25 Sep 2015 14:32:08 +0800 Subject: [PATCH] Typo fix Add the missing blanks. Change-Id: I7f29575591cac1df26d6dba3f4e246bff097e149 --- etc/glance-api.conf | 2 +- etc/glance-cache.conf | 2 +- etc/glance-registry.conf | 2 +- etc/glance-scrubber.conf | 2 +- glance/common/config.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/etc/glance-api.conf b/etc/glance-api.conf index aa26e042eb..dc773badaa 100644 --- a/etc/glance-api.conf +++ b/etc/glance-api.conf @@ -120,7 +120,7 @@ # Digest algorithm which will be used for digital signature. Use the # command "openssl list-message-digest-algorithms" to get the -# available algorithmssupported by the version of OpenSSL on the +# available algorithms supported by the version of OpenSSL on the # platform. Examples are "sha1", "sha256", "sha512", etc. (string # value) #digest_algorithm = sha256 diff --git a/etc/glance-cache.conf b/etc/glance-cache.conf index 71f713dd3c..678fa94ea7 100644 --- a/etc/glance-cache.conf +++ b/etc/glance-cache.conf @@ -97,7 +97,7 @@ # Digest algorithm which will be used for digital signature. Use the # command "openssl list-message-digest-algorithms" to get the -# available algorithmssupported by the version of OpenSSL on the +# available algorithms supported by the version of OpenSSL on the # platform. Examples are "sha1", "sha256", "sha512", etc. (string # value) #digest_algorithm = sha256 diff --git a/etc/glance-registry.conf b/etc/glance-registry.conf index dca166b63f..b40dc5a43f 100644 --- a/etc/glance-registry.conf +++ b/etc/glance-registry.conf @@ -114,7 +114,7 @@ # Digest algorithm which will be used for digital signature. Use the # command "openssl list-message-digest-algorithms" to get the -# available algorithmssupported by the version of OpenSSL on the +# available algorithms supported by the version of OpenSSL on the # platform. Examples are "sha1", "sha256", "sha512", etc. (string # value) #digest_algorithm = sha256 diff --git a/etc/glance-scrubber.conf b/etc/glance-scrubber.conf index 65f9714454..282e6d4f4e 100644 --- a/etc/glance-scrubber.conf +++ b/etc/glance-scrubber.conf @@ -97,7 +97,7 @@ # Digest algorithm which will be used for digital signature. Use the # command "openssl list-message-digest-algorithms" to get the -# available algorithmssupported by the version of OpenSSL on the +# available algorithms supported by the version of OpenSSL on the # platform. Examples are "sha1", "sha256", "sha512", etc. (string # value) #digest_algorithm = sha256 diff --git a/glance/common/config.py b/glance/common/config.py index 7a0372769f..9c4fa257bc 100644 --- a/glance/common/config.py +++ b/glance/common/config.py @@ -171,7 +171,7 @@ common_opts = [ cfg.StrOpt('digest_algorithm', default='sha256', help=_('Digest algorithm which will be used for digital ' 'signature. Use the command "openssl list-message-' - 'digest-algorithms" to get the available algorithms' + 'digest-algorithms" to get the available algorithms ' 'supported by the version of OpenSSL on the platform.' ' Examples are "sha1", "sha256", "sha512", etc.')), ]