From 0152d16820e527060be3363f590c49544b51b710 Mon Sep 17 00:00:00 2001 From: Niranjan MR Date: Tue, 27 Oct 2015 01:22:05 +0530 Subject: [PATCH] enable pem=True in export_pem_cert function export_pem_cert should export the certificate in pem format but instead exports the cert in der format as it doesn't enable pem=True. This patch specifies pem=True for export_pem_cert function Signed-off-by: Niranjan MR Reviewed-By: Tomas Babej --- ipapython/certdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipapython/certdb.py b/ipapython/certdb.py index d6de01100..704bae528 100644 --- a/ipapython/certdb.py +++ b/ipapython/certdb.py @@ -417,7 +417,7 @@ class NSSDatabase(object): def export_pem_cert(self, nickname, location): """Export the given cert to PEM file in the given location""" - cert = self.get_cert(nickname) + cert = self.get_cert(nickname, pem=True) with open(location, "w+") as fd: fd.write(cert) os.chmod(location, 0o444)