mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[mod] use logger string concatenation api
This commit is contained in:
parent
f1188782e2
commit
718011c0ee
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue