console_conf: use 'console-conf' as project name

'project' value is used to construct /run/<project> 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 <ondrej.kubik@canonical.com>
This commit is contained in:
Ondrej Kubik 2024-01-06 02:07:29 +00:00 committed by Maciej Borzecki
parent 5a1a2b0faa
commit 3295691e6b
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ log = logging.getLogger("console_conf.core")
class ConsoleConf(TuiApplication): class ConsoleConf(TuiApplication):
from console_conf import controllers as controllers_mod from console_conf import controllers as controllers_mod
project = "console_conf" project = "console-conf"
make_model = ConsoleConfModel make_model = ConsoleConfModel
@ -44,7 +44,7 @@ class ConsoleConf(TuiApplication):
class RecoveryChooser(TuiApplication): class RecoveryChooser(TuiApplication):
from console_conf import controllers as controllers_mod from console_conf import controllers as controllers_mod
project = "console_conf" project = "console-conf"
controllers = [ controllers = [
"RecoveryChooserWelcome", "RecoveryChooserWelcome",