Skip to content

Commit 4b79156

Browse files
committed
test: fix doccomment for utils.run_cmd
it was referring to a `no_shell` parameter, instead of the `shell` parameter. Fixes: cb61379 Signed-off-by: Patrick Roy <[email protected]>
1 parent 0a3c6fa commit 4b79156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/framework/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def run_cmd(cmd, check=False, shell=True, cwd=None, timeout=None) -> CommandRetu
381381
382382
:param cmd: command to execute
383383
:param check: whether a non-zero return code should result in a `ChildProcessError` or not.
384-
:param no_shell: don't run the command in a sub-shell
384+
:param shell: run the command in a sub-shell
385385
:param cwd: sets the current directory before the child is executed
386386
:param timeout: Time before command execution should be aborted with a `TimeoutExpired` exception
387387
:return: return code, stdout, stderr

0 commit comments

Comments
 (0)