Commit cd1d3ef7 authored by Ezio Melotti's avatar Ezio Melotti

#13233: fix typo.

parent 81231d93
......@@ -910,7 +910,7 @@ Files and Directories
try:
fp = open("myfile")
except IOError as e:
if e.errno == errno.EACCESS:
if e.errno == errno.EACCES:
return "some default data"
# Not a permission error.
raise
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment