From 909d61f7dddb95170f85ffd9aa2381116b9197fd Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 24 Jul 2014 08:08:15 +0300 Subject: [PATCH] Fix grammar --- Doc/tutorial/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 6d14cb3480..6f77def118 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -184,7 +184,7 @@ attributes to it as desired. :: ... except Exception as inst: ... print type(inst) # the exception instance ... print inst.args # arguments stored in .args - ... print inst # __str__ allows args to printed directly + ... print inst # __str__ allows args to be printed directly ... x, y = inst.args ... print 'x =', x ... print 'y =', y -- 2.50.1