Skip to content

Commit aabaefb

Browse files
#23: fix typo
1 parent e21932e commit aabaefb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

podman-compose.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def container_to_args(cnt, dirname, podman_path, shared_vols):
503503
elif healthcheck_type == 'CMD-SHELL':
504504
if len(healthcheck_test)!=1:
505505
raise ValueError("'CMD_SHELL' takes a single string after it")
506-
args.extend(['--healthcheck-command', '/bin/sh -c {}'.format(cmd_quote(healthcheck_test[0])]))
506+
args.extend(['--healthcheck-command', '/bin/sh -c {}'.format(cmd_quote(healthcheck_test[0]))])
507507
else:
508508
raise ValueError(
509509
"unknown healthcheck test type [{}],\

0 commit comments

Comments
 (0)