Fix warning

This commit is contained in:
Ivan Habunek 2024-01-02 21:02:38 +01:00
parent 7f0692891e
commit 03035c31a0
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ def get_default_map():
commands = settings.get("commands", {})
# TODO: remove in version 1.0
tui_old = settings.get("tui", {})
tui_old = settings.get("tui", {}).copy()
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].")