fix missed rename

This commit is contained in:
Fabian Dill 2020-06-14 04:12:38 +02:00
parent fdaba7e28c
commit c486cd77bb
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class Context(Node):
sentinel = object()
for key, value in server_options.items():
if key not in self.blacklist:
if key not in self.embedded_blacklist:
current = getattr(self, key, sentinel)
if current is not sentinel:
logging.debug(f"Setting server option {key} to {value} from supplied multidata")