mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Fix typo
This commit is contained in:
parent
f6bb908beb
commit
765625d58c
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ def assert_rsa_key(key):
|
|||
Asserts that the key at the given path is an RSA key.
|
||||
:param key: path to key
|
||||
"""
|
||||
with open(filename, 'rb') as file:
|
||||
with open(key, 'rb') as file:
|
||||
privkey1 = file.read()
|
||||
|
||||
key = load_pem_private_key(data=privkey1, password=None, backend=default_backend())
|
||||
|
|
|
|||
Loading…
Reference in a new issue