Skip to content

Commit 72df32f

Browse files
committed
Fix missing print()
1 parent 701d5fc commit 72df32f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/en/capture.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ that performs some output related checks:
9797
out, err = capsys.readouterr()
9898
assert out == "hello\n"
9999
assert err == "world\n"
100-
print "next"
100+
print ("next")
101101
out, err = capsys.readouterr()
102102
assert out == "next\n"
103103

0 commit comments

Comments
 (0)