mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 02:12:36 +02:00
remove hardcoded 'docker' logging reference
Closes #122 as this was the last remaining hardcoded docker reference where the code also applied to podman.
This commit is contained in:
parent
57e455bbf1
commit
82ac22e837
1 changed files with 2 additions and 2 deletions
|
@ -158,8 +158,8 @@ class WaitingWidget(QtWidgets.QWidget):
|
|||
|
||||
try:
|
||||
container_runtime = container.get_runtime()
|
||||
except container.NoContainerTechException:
|
||||
log.error("Docker is not installed")
|
||||
except container.NoContainerTechException as e:
|
||||
log.error(str(e))
|
||||
state = "not_installed"
|
||||
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue