mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
check oldest value
This commit is contained in:
parent
72cbb7e072
commit
c2d699711d
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ class NamespaceConfig:
|
|||
|
||||
def __getattr__(self, name: str) -> Any:
|
||||
value = getattr(self.namespace, name)
|
||||
if not _is_immutable(value):
|
||||
if name not in self._previous_mutable_values and not _is_immutable(value):
|
||||
self._previous_mutable_values[name] = copy.deepcopy(value)
|
||||
return value
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue