From 21d27784ebbb9bab15f04f6c3cce8405c2410afe Mon Sep 17 00:00:00 2001 From: Eli Boyarski Date: Mon, 27 Jun 2016 15:41:40 +0300 Subject: [PATCH] catched -> caught Even though catch is a Python keyword, 'catched' just looks terrible in text. If the text was supposed to reference the keyword, then 'catched' should be changed to "'catch'ed". --- doc/en/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/usage.rst b/doc/en/usage.rst index fba699849..0bc6028e4 100644 --- a/doc/en/usage.rst +++ b/doc/en/usage.rst @@ -79,7 +79,7 @@ than ``--tb=long``). It also ensures that a stack trace is printed on **KeyboardInterrrupt** (Ctrl+C). This is very useful if the tests are taking too long and you interrupt them with Ctrl+C to find out where the tests are *hanging*. By default no output -will be shown (because KeyboardInterrupt is catched by pytest). By using this +will be shown (because KeyboardInterrupt is caught by pytest). By using this option you make sure a trace is shown. Dropping to PDB_ (Python Debugger) on failures