mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-05 13:11:49 +02:00
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.
This commit is contained in:
parent
deaeb7c682
commit
067c741847
1 changed files with 2 additions and 0 deletions
|
@ -229,6 +229,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
||||||
self.handle_docker_desktop_version_check(is_version_valid, version)
|
self.handle_docker_desktop_version_check(is_version_valid, version)
|
||||||
except errors.UnsupportedContainerRuntime as e:
|
except errors.UnsupportedContainerRuntime as e:
|
||||||
pass # It's catched later in the flow.
|
pass # It's catched later in the flow.
|
||||||
|
except errors.NoContainerTechException as e:
|
||||||
|
pass # It's catched later in the flow.
|
||||||
|
|
||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue