mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Fix double "raise"
This commit is contained in:
parent
73eb8f8546
commit
c80f9bed97
1 changed files with 1 additions and 2 deletions
|
|
@ -694,8 +694,7 @@ class Client(object):
|
|||
raise LetsEncryptClientError(
|
||||
"The provided key is not a valid key")
|
||||
except IOError:
|
||||
raise raise LetsEncryptClientError(
|
||||
"The provided key could not be read")
|
||||
raise LetsEncryptClientError("The provided key could not be read")
|
||||
|
||||
# If CSR and key are provided, the key must be the same key used
|
||||
# in the CSR.
|
||||
|
|
|
|||
Loading…
Reference in a new issue