From f2a85c09689cb09e6a0996125c112552599c717c Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 7 Oct 2013 18:25:23 -0400 Subject: Fixed pylint issue in pkiparser.py. The exception handler in pkiparser.py has been modified to re-raise the exception such that it will be handled by the caller instead of exitting to the system immediately. --- base/server/python/pki/server/deployment/pkiparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/server/python/pki/server/deployment/pkiparser.py') diff --git a/base/server/python/pki/server/deployment/pkiparser.py b/base/server/python/pki/server/deployment/pkiparser.py index 8a75b8fe3..d4062bf88 100644 --- a/base/server/python/pki/server/deployment/pkiparser.py +++ b/base/server/python/pki/server/deployment/pkiparser.py @@ -1125,7 +1125,7 @@ class PKIConfigParser: extra=config.PKI_INDENTATION_LEVEL_2) config.pki_log.error(log.PKIHELPER_DICTIONARY_INTERPOLATION_2, err, extra=config.PKI_INDENTATION_LEVEL_2) - sys.exit(1) + raise return -- cgit