From 72df32f1fd106e642114b2aee8ba1820ab5f82ec Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 3 Aug 2016 17:34:55 -0300 Subject: [PATCH] Fix missing print() --- doc/en/capture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"