[mod] use logger string concatenation api

This commit is contained in:
Laurent Peuch 2016-10-30 18:48:52 +01:00
parent f1188782e2
commit 718011c0ee

View file

@ -473,7 +473,7 @@ def _prepare_certificate_signing_request(domain, key_file, output_folder):
# Save the request in tmp folder
csr_file = output_folder + domain + ".csr"
logger.info("Saving to " + csr_file + " .")
logger.info("Saving to %s.", csr_file)
with open(csr_file, "w") as f:
f.write(crypto.dump_certificate_request(crypto.FILETYPE_PEM, csr))