From 27aba2e21f74dc3e7862cbe5eec583fde592d072 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Mon, 14 Feb 2022 19:31:47 +0100 Subject: [PATCH] config.py: fix cmd_config_init() saving --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 12079ea..805a414 100644 --- a/config.py +++ b/config.py @@ -565,7 +565,7 @@ def cmd_profile_init(name: str, non_interactive: bool = False, noop: bool = Fals profile |= config.file['profiles'][name] if not non_interactive: - profile = prompt_profile(name, create=True) + profile, _changed = prompt_profile(name, create=True) config.update_profile(name, profile) if not noop: