From 87112ebecfb0b413849acbdf4d1e7905daa279e3 Mon Sep 17 00:00:00 2001 From: Carlos Nihelton Date: Thu, 26 May 2022 07:37:35 -0300 Subject: [PATCH] Sets TUI about help message on super init. --- system_setup/client/client.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/system_setup/client/client.py b/system_setup/client/client.py index 787fcbda..aeb999f4 100644 --- a/system_setup/client/client.py +++ b/system_setup/client/client.py @@ -76,6 +76,4 @@ class SystemSetupClient(SubiquityClient): } def __init__(self, opts): - super().__init__(opts) - self.help_menu.about_message = \ - _about_msg(ABOUT_UBUNTU_WSL, self.opts.dry_run) + super().__init__(opts, _about_msg(ABOUT_UBUNTU_WSL, opts.dry_run))