Closes #28713 uses OSError in the tutorial

This commit is contained in:
Kushal Das 2016-11-16 21:13:43 +05:30
parent df66b9c425
commit ecbca357c9

View file

@ -174,7 +174,7 @@ example::
for arg in sys.argv[1:]: for arg in sys.argv[1:]:
try: try:
f = open(arg, 'r') f = open(arg, 'r')
except IOError: except OSError:
print('cannot open', arg) print('cannot open', arg)
else: else:
print(arg, 'has', len(f.readlines()), 'lines') print(arg, 'has', len(f.readlines()), 'lines')