From 375ad94770770ffd642c212090361d06baeafc7a Mon Sep 17 00:00:00 2001 From: Raman Tehlan Date: Thu, 4 Apr 2019 08:37:53 +0530 Subject: [PATCH] Error fixed. --- docs/file.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/file.rst b/docs/file.rst index f132dae..3000ef3 100644 --- a/docs/file.rst +++ b/docs/file.rst @@ -116,7 +116,7 @@ In real life scenarios we should try to use `with` statement. It will take care >>> with open('setup.py') as fobj: ... for line in fobj: - ... print line, + ... print(line) ... #!/usr/bin/env python3 """Factorial project"""