From f786534173e448e5499413f967ce620cec8e7a53 Mon Sep 17 00:00:00 2001 From: Bartosz Cierocki Date: Tue, 12 Jun 2018 19:39:51 +0200 Subject: [PATCH] Fix three spaces instead of four in docs --- doc/en/assert.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/assert.rst b/doc/en/assert.rst index a2c588d81..e0e9b9305 100644 --- a/doc/en/assert.rst +++ b/doc/en/assert.rst @@ -91,7 +91,7 @@ In the context manager form you may use the keyword argument ``message`` to specify a custom failure message:: >>> with raises(ZeroDivisionError, message="Expecting ZeroDivisionError"): - ... pass + ... pass ... Failed: Expecting ZeroDivisionError If you want to write test code that works on Python 2.4 as well,