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:
deeplow 2022-09-15 11:32:44 +01:00
parent 57e455bbf1
commit 82ac22e837
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -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: