Followup for remove signing[config].

This patch closes the NIT comments in [1].

[1] https://review.opendev.org/#/c/659434

Change-Id: I934886aee76f9996940425d86cd148c56ef80a20
This commit is contained in:
Vishakha Agarwal 2019-07-30 16:13:21 +05:30
parent a16b6f700e
commit 73b263de55
1 changed files with 2 additions and 4 deletions

View File

@ -32,8 +32,7 @@ class SimpleCertCAResource(flask_restful.Resource):
def get(self):
raise exception.Gone(
message=_('This API is no longer available due to the removal'
'of support for PKI tokens. Returning a 410 instead'
'of removing the API'))
'of support for PKI tokens.'))
class SimpleCertListResource(flask_restful.Resource):
@ -41,8 +40,7 @@ class SimpleCertListResource(flask_restful.Resource):
def get(self):
raise exception.Gone(
message=_('This API is no longer available due to the removal'
'of support for PKI tokens. Returning a 410 instead'
'of removing the API'))
'of support for PKI tokens.'))
class SimpleCertAPI(ks_flask.APIBase):