Skip to content

Commit

Permalink
remove hardcoded 'docker' logging reference
Browse files Browse the repository at this point in the history
Closes #122 as this was the last remaining hardcoded docker
reference where the code also applied to podman.
  • Loading branch information
deeplow committed Sep 15, 2022
1 parent 57e455b commit 82ac22e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dangerzone/gui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def check_state(self) -> None:

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:
Expand Down

0 comments on commit 82ac22e

Please sign in to comment.