diff --git a/doc/en/capture.rst b/doc/en/capture.rst index b9be8bd28..05ed216e9 100644 --- a/doc/en/capture.rst +++ b/doc/en/capture.rst @@ -97,7 +97,7 @@ that performs some output related checks: out, err = capsys.readouterr() assert out == "hello\n" assert err == "world\n" - print "next" + print ("next") out, err = capsys.readouterr() assert out == "next\n"