From d35f6bab025ed6f489224c729d203def6204d752 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Thu, 24 Apr 2025 10:23:25 +0100 Subject: [PATCH] shell/lisa_shell: Fix error message when tkinter is not installed FIX When the tkinter Python package is not available, ask users to install python3-tk rather than the non-existing python3-tkinter. Co-authored-by: Metin Kaya --- shell/lisa_shell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/lisa_shell b/shell/lisa_shell index 445507675..a64824504 100755 --- a/shell/lisa_shell +++ b/shell/lisa_shell @@ -203,7 +203,7 @@ function _lisa-install-system-check { fi } - _lisa-python-package-check tkinter python3-tkinter + _lisa-python-package-check tkinter python3-tk _lisa-python-package-check ensurepip python3-venv } -- GitLab