diff options
author | zhufl <zhu.fanglei@zte.com.cn> | 2019-08-05 11:14:37 +0800 |
---|---|---|
committer | zhufl <zhu.fanglei@zte.com.cn> | 2019-08-06 08:29:34 +0800 |
commit | 5d4bf308c4d392ced48fd81003e2816984c78712 (patch) | |
tree | 4203a217cc9a84f5cd3f6b55e7780922ec91dd77 /keystone/api | |
parent | 73045dfbcaeeb32a4ff7a026e19e8796e7261246 (diff) | |
download | keystone-5d4bf308c4d392ced48fd81003e2816984c78712.tar.gz |
Fix missing print format and missing ws between words
This is to fix:
1. missing print format
2. missing ws between words in log messages
Change-Id: Iff9cd6c076388e347eb27f317157c6f7239e05bf
Diffstat (limited to 'keystone/api')
-rw-r--r-- | keystone/api/os_simple_cert.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/api/os_simple_cert.py b/keystone/api/os_simple_cert.py index d5a48c185..7250c6c76 100644 --- a/keystone/api/os_simple_cert.py +++ b/keystone/api/os_simple_cert.py @@ -31,7 +31,7 @@ class SimpleCertCAResource(flask_restful.Resource): @ks_flask.unenforced_api def get(self): raise exception.Gone( - message=_('This API is no longer available due to the removal' + message=_('This API is no longer available due to the removal ' 'of support for PKI tokens.')) @@ -39,7 +39,7 @@ class SimpleCertListResource(flask_restful.Resource): @ks_flask.unenforced_api def get(self): raise exception.Gone( - message=_('This API is no longer available due to the removal' + message=_('This API is no longer available due to the removal ' 'of support for PKI tokens.')) |