From aecd98d7637fba524c1447cbf4cd11c8e8afbbe7 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 20 Feb 2014 11:11:43 -0600 Subject: [PATCH] Fix incorrect exception name in docstring Signed-off-by: Zack Cerza --- teuthology/orchestra/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/run.py b/teuthology/orchestra/run.py index 16987f24d9..16cb07bfcf 100644 --- a/teuthology/orchestra/run.py +++ b/teuthology/orchestra/run.py @@ -259,7 +259,7 @@ def run( :param stdout: What to do with standard output. Either a file-like object, a `logging.Logger`, `PIPE`, or `None` for copying to default log. `PIPE` means caller is responsible for reading, or command may never exit. :param stderr: What to do with standard error. See `stdout`. :param logger: If logging, write stdout/stderr to "out" and "err" children of this logger. Defaults to logger named after this module. - :param check_status: Whether to raise CalledProcessError on non-zero exit status, and . Defaults to True. All signals and connection loss are made to look like SIGHUP. + :param check_status: Whether to raise CommandFailedError on non-zero exit status, and . Defaults to True. All signals and connection loss are made to look like SIGHUP. :param wait: Whether to wait for process to exit. If False, returned ``r.exitstatus`` s a `gevent.event.AsyncResult`, and the actual status is available via ``.get()``. """ r = execute(client, args) -- 2.39.5