This commit is contained in:
Ezio Melotti 2011-10-20 19:49:29 +03:00
parent 44b866a6d3
commit 5e30fa5f56
1 changed files with 1 additions and 1 deletions

View File

@ -936,7 +936,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