From 3295691e6b0178e3d30feb53ceaad7db398fa451 Mon Sep 17 00:00:00 2001 From: Ondrej Kubik Date: Sat, 6 Jan 2024 02:07:29 +0000 Subject: [PATCH] console_conf: use 'console-conf' as project name 'project' value is used to construct /run/ path Other parts are already using 'console-conf', prefer this syntax. In the future we might consider using SNAP_NAME, and this '_' are not permitted as part of the snap name. Signed-off-by: Ondrej Kubik --- console_conf/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console_conf/core.py b/console_conf/core.py index 78e1af7c..36e4aee4 100644 --- a/console_conf/core.py +++ b/console_conf/core.py @@ -26,7 +26,7 @@ log = logging.getLogger("console_conf.core") class ConsoleConf(TuiApplication): from console_conf import controllers as controllers_mod - project = "console_conf" + project = "console-conf" make_model = ConsoleConfModel @@ -44,7 +44,7 @@ class ConsoleConf(TuiApplication): class RecoveryChooser(TuiApplication): from console_conf import controllers as controllers_mod - project = "console_conf" + project = "console-conf" controllers = [ "RecoveryChooserWelcome",