update_manager: fix error message displaying the wrong option

Signed-off-by: Alfredo Monclus <alfredomonclus@gmail.com>
This commit is contained in:
alfrix 2022-10-15 15:59:08 -03:00 committed by Eric Callahan
parent 06279d0e10
commit 7552631b65
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class AppDeploy(BaseDeploy):
if svc not in svc_choices:
raw = " ".join(services)
self.server.add_warning(
f"[{config.get_name()}]: Option 'restart_action: {raw}' "
f"[{config.get_name()}]: Option 'managed_services: {raw}' "
f"contains an invalid value '{svc}'. All values must be "
f"one of the following choices: {svc_choices}"
)