fix: [tools] Fixed a typo.

This commit is contained in:
Cédric Bonhomme 2024-07-30 14:38:57 +02:00
parent 8df2934a51
commit 25479573b8
Signed by untrusted user who does not match committer: cedric
GPG key ID: A1CB94DE57B7A70D

View file

@ -130,7 +130,7 @@ def validate_webservice_config_file() -> bool:
for name in dir(module_sample):
if name not in dir(module_user):
print(f"{name} missing in from {user_config}.")
print(f"{name} missing from {user_config}.")
module_user.__dict__[name] = module_sample.__dict__[name]
result = False