Skip to content

Commit

Permalink
#23: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
muayyad-alsadi committed Jul 9, 2019
1 parent e21932e commit aabaefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman-compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def container_to_args(cnt, dirname, podman_path, shared_vols):
elif healthcheck_type == 'CMD-SHELL':
if len(healthcheck_test)!=1:
raise ValueError("'CMD_SHELL' takes a single string after it")
args.extend(['--healthcheck-command', '/bin/sh -c {}'.format(cmd_quote(healthcheck_test[0])]))
args.extend(['--healthcheck-command', '/bin/sh -c {}'.format(cmd_quote(healthcheck_test[0]))])
else:
raise ValueError(
"unknown healthcheck test type [{}],\
Expand Down

0 comments on commit aabaefb

Please sign in to comment.