From 067c741847187a80ee28e37731431bd8c91426c9 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 2 Apr 2025 15:04:24 +0300 Subject: [PATCH] IMPROVE_ME: Handle the case where Docker is not installed This looks like a regression, and we need to find a better way to handle it, or add a unit test. --- dangerzone/gui/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dangerzone/gui/main_window.py b/dangerzone/gui/main_window.py index 38b871f..52ac9a1 100644 --- a/dangerzone/gui/main_window.py +++ b/dangerzone/gui/main_window.py @@ -229,6 +229,8 @@ class MainWindow(QtWidgets.QMainWindow): self.handle_docker_desktop_version_check(is_version_valid, version) except errors.UnsupportedContainerRuntime as e: pass # It's catched later in the flow. + except errors.NoContainerTechException as e: + pass # It's catched later in the flow. self.show()