summaryrefslogtreecommitdiff
path: root/keystoneclient/common
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-01-11 12:23:18 -0600
committerBrant Knudson <bknudson@us.ibm.com>2015-01-21 07:26:59 -0600
commit97d51bd8326af52fd197754f24a866a0d28df122 (patch)
tree277a14f152fec3c3e7224bf9ce9cbfa140cda198 /keystoneclient/common
parenteaab62aca5f570bd119b4c602db7845a017c958e (diff)
downloadpython-keystoneclient-97d51bd8326af52fd197754f24a866a0d28df122.tar.gz
Correct failures for check H238
The new H238 "old style class declaration, use new style (inherit from `object`)" rule was failing and ignored. Change-Id: I9f616d74e4777640cc9441e96f2bd8c1873aaaca
Diffstat (limited to 'keystoneclient/common')
-rw-r--r--keystoneclient/common/cms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/common/cms.py b/keystoneclient/common/cms.py
index 19390f2..c5faf96 100644
--- a/keystoneclient/common/cms.py
+++ b/keystoneclient/common/cms.py
@@ -42,7 +42,7 @@ PKI_ASN1_FORM = 'PEM'
# The openssl cms command exits with these status codes.
# See https://www.openssl.org/docs/apps/cms.html#EXIT_CODES
-class OpensslCmsExitStatus:
+class OpensslCmsExitStatus(object):
SUCCESS = 0
INPUT_FILE_READ_ERROR = 2
CREATE_CMS_READ_MIME_ERROR = 3