mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 10:12:38 +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:
|
try:
|
||||||
container_runtime = container.get_runtime()
|
container_runtime = container.get_runtime()
|
||||||
except container.NoContainerTechException:
|
except container.NoContainerTechException as e:
|
||||||
log.error("Docker is not installed")
|
log.error(str(e))
|
||||||
state = "not_installed"
|
state = "not_installed"
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue