From: Zack Cerza Date: Thu, 20 Feb 2014 17:11:43 +0000 (-0600) Subject: Fix incorrect exception name in docstring X-Git-Tag: v0.94.10~27^2^2~364^2~356^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=aecd98d7637fba524c1447cbf4cd11c8e8afbbe7;p=ceph.git Fix incorrect exception name in docstring Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/run.py b/teuthology/orchestra/run.py index 16987f24d981..16cb07bfcf8e 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)