From bce40c2db30fb0ffb9264b5f51535c26f48fe983 Mon Sep 17 00:00:00 2001 From: ambiamber <80137437+ambiamber@users.noreply.github.com> Date: Fri, 9 Sep 2022 16:21:14 -0400 Subject: [PATCH] Change "an key-value" to "a key-value" --- podman_compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_compose.py b/podman_compose.py index e33f520..2001145 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -1030,7 +1030,7 @@ def container_to_args(compose, cnt, detached=True): # WIP: healthchecks are still work in progress healthcheck = cnt.get("healthcheck", None) or {} if not is_dict(healthcheck): - raise ValueError("'healthcheck' must be an key-value mapping") + raise ValueError("'healthcheck' must be a key-value mapping") healthcheck_disable = healthcheck.get("disable", False) healthcheck_test = healthcheck.get("test", None) if healthcheck_disable: