mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Add missing directory field (#7687)
Fixes #7683. * Add missing directory field to error message * Added change to CHANGELOG.md
This commit is contained in:
parent
fd91643a7f
commit
6e07e8b5c0
2 changed files with 2 additions and 2 deletions
|
|
@ -251,7 +251,7 @@ class Directory(jose.JSONDeSerializable):
|
|||
try:
|
||||
return self._jobj[self._canon_key(name)]
|
||||
except KeyError:
|
||||
raise KeyError('Directory field not found')
|
||||
raise KeyError('Directory field "' + self._canon_key(name) + '" not found')
|
||||
|
||||
def to_partial_json(self):
|
||||
return self._jobj
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||
|
||||
### Changed
|
||||
|
||||
*
|
||||
* Add directory field to error message when field is missing.
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue