From 5fe6d83c885a299e7560a8f6436eef08d314473f Mon Sep 17 00:00:00 2001 From: Conor O'Callaghan <4090256+Conor0Callaghan@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:52:17 +0000 Subject: [PATCH] Update check-install.py Minor fix for error handling --- check-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check-install.py b/check-install.py index ea5eecd..0104677 100755 --- a/check-install.py +++ b/check-install.py @@ -13,7 +13,7 @@ try: import apt check_apt = True -except ImportErorr: +except ImportError: print("⚠️ Could not import \"apt\". Unable to verify system dependencies.")