Fix bug which causes a crash if palette is not in settings

This commit is contained in:
Ivan Habunek 2024-01-02 22:06:20 +01:00
parent 081bc0459e
commit 964efc5b4c
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ def get_default_map():
# TODO: remove in version 1.0
tui_old = settings.get("tui", {}).copy()
del tui_old["palette"]
if "palette" in tui_old:
del tui_old["palette"]
if tui_old:
# TODO: don't show the warning for [toot.palette]
print_warning("Settings section [tui] has been deprecated in favour of [commands.tui].")