mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
use lazy logging
This commit is contained in:
parent
aadf6da7bf
commit
47e11a5824
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ def init_key(key_size):
|
|||
key_pem = crypto_util.make_key(key_size)
|
||||
except ValueError as err:
|
||||
logging.fatal(str(err))
|
||||
logging.info("Note: The default RSA key size is %d bits." % CONFIG.RSA_KEY_SIZE)
|
||||
logging.info("Note: The default RSA key size is %d bits.", CONFIG.RSA_KEY_SIZE)
|
||||
sys.exit(1)
|
||||
|
||||
# Save file
|
||||
|
|
|
|||
Loading…
Reference in a new issue