From 671157f430eb6fa46ad2132758e3d06f602724f4 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 31 Mar 2017 05:05:37 +0200 Subject: Fixed pylint error in pki.authority. https://pagure.io/dogtagpki/issue/2627 Change-Id: I3111e78fc0afb63799e7bd707274ec7a9e8624ac --- base/common/python/pki/authority.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python') 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") -- cgit