This commit is contained in:
Ezio Melotti 2011-10-20 19:51:18 +03:00
parent 81231d9379
commit cd1d3ef77b
1 changed files with 1 additions and 1 deletions

View File

@ -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