From 06652256ec307a6dfce87e8492dc3e35b355150a Mon Sep 17 00:00:00 2001 From: Robert Wasinger Date: Mon, 2 Sep 2024 14:13:15 -0700 Subject: [PATCH] fix wording on stdout -> fifo check --- chio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chio.py b/chio.py index ec751b8..c0525b4 100755 --- a/chio.py +++ b/chio.py @@ -526,7 +526,7 @@ def add_argument(parser, arg, **kwargs): add_argument(_parser, "--check_stdout_path", type=str, nargs='?', help="the challenge will check that output is redirected to a specific file path") add_argument(_parser, "--check_stderr_path", type=str, nargs='?', help="the challenge will check that error output is redirected to a specific file path") add_argument(_parser, "--check_stdin_fifo", action='store_true', help="the challenge will make sure that stdin is redirected from a fifo") - add_argument(_parser, "--check_stdout_fifo", action='store_true', help="the challenge will make sure that stdout is a redirected from fifo") + add_argument(_parser, "--check_stdout_fifo", action='store_true', help="the challenge will make sure that stdout is redirected to a fifo") # other process stuff add_argument(_parser, "--cwd", type=str, nargs='?', help="the challenge will check that it is running in a specific current working directory")