]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Fix incorrect exception name in docstring
authorZack Cerza <zack@cerza.org>
Thu, 20 Feb 2014 17:11:43 +0000 (11:11 -0600)
committerZack Cerza <zack@cerza.org>
Thu, 20 Feb 2014 23:46:09 +0000 (17:46 -0600)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
teuthology/orchestra/run.py

index 16987f24d98109b9f76b0770231ab236783e34ed..16cb07bfcf8eeab41dbbcdf4014179ff6c8e63b4 100644 (file)
@@ -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)