mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Remove response argument from exception and fix eror messages.
This commit is contained in:
parent
e1b4797cbf
commit
7bd7e7ca23
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class Client(object): # pylint: disable=too-many-instance-attributes
|
|||
new_authzr_uri = response.links['next']['url']
|
||||
|
||||
if new_authzr_uri is None:
|
||||
raise errors.ClientError(response, 'missing "new_authrz_uri"')
|
||||
raise errors.ClientError('"next" link missing')
|
||||
|
||||
return messages.RegistrationResource(
|
||||
body=messages.Registration.from_json(response.json()),
|
||||
|
|
|
|||
Loading…
Reference in a new issue