From 77d3d1caf28d90902552a6f4f0e65dde38c90f84 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 11 Apr 2016 22:00:23 +0200 Subject: [PATCH] Fix error message wording --- acertmgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acertmgr.py b/acertmgr.py index 8582cbe..503fc28 100755 --- a/acertmgr.py +++ b/acertmgr.py @@ -145,7 +145,7 @@ def cert_put(domain, settings): src_fd.close() if fmt == "ca": if not os.path.isfile(ca_file): - raise FileNotFoundError("The server key file (%s) is missing!" % ca_file) + raise FileNotFoundError("The CA certificate file (%s) is missing!" % ca_file) src_fd = open(ca_file, "r") crt_fd.write(src_fd.read()) src_fd.close()