From 3bc366bef457cc0704748ee84668db3a272fb970 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 3 Feb 2020 15:37:20 -0500 Subject: [PATCH] Fix mistake in the cert util --- confluent_server/bin/confluentcertutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/bin/confluentcertutil.py b/confluent_server/bin/confluentcertutil.py index c121224a..ea4477cd 100644 --- a/confluent_server/bin/confluentcertutil.py +++ b/confluent_server/bin/confluentcertutil.py @@ -7,7 +7,7 @@ import tempfile def get_openssl_conf_location(): if exists('/etc/pki/tls/openssl.cnf'): return '/etc/pki/tls/openssl.cnf' - elif exists('/etc/ssl/openssl.cnf'); + elif exists('/etc/ssl/openssl.cnf'): return '/etc/ssl/openssl.cnf' else: raise Exception("Cannot find openssl config file")