summaryrefslogtreecommitdiffstats
path: root/base/common/python
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2017-03-31 05:05:37 +0200
committerEndi S. Dewata <edewata@redhat.com>2017-03-31 05:05:37 +0200
commit671157f430eb6fa46ad2132758e3d06f602724f4 (patch)
tree30beb6f1bf372ba087b79592518feb1780c2c530 /base/common/python
parent269f7d62ab3c8d13f7746fccb69cb0b305c46fb9 (diff)
downloadpki-671157f430eb6fa46ad2132758e3d06f602724f4.tar.gz
pki-671157f430eb6fa46ad2132758e3d06f602724f4.tar.xz
pki-671157f430eb6fa46ad2132758e3d06f602724f4.zip
Fixed pylint error in pki.authority.
https://pagure.io/dogtagpki/issue/2627 Change-Id: I3111e78fc0afb63799e7bd707274ec7a9e8624ac
Diffstat (limited to 'base/common/python')
-rw-r--r--base/common/python/pki/authority.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/common/python/pki/authority.py b/base/common/python/pki/authority.py
index 00c6fd90e..f6880b5c3 100644
--- a/base/common/python/pki/authority.py
+++ b/base/common/python/pki/authority.py
@@ -362,7 +362,7 @@ def main():
try:
subca = ca_client.create_ca(data)
except ValueError as e:
- print(e.message)
+ print(e)
# Get the host CA
print("Getting the host CA")