Use OESeeror instead of os.error (#16720)

Patch by Serhiy Storchaka.
This commit is contained in:
Andrew Svetlov 2012-12-24 19:58:48 +02:00
parent 6a7a49c631
commit 8b33dd8e54
21 changed files with 56 additions and 56 deletions

View file

@ -32,13 +32,13 @@ def main():
return 1
try:
os.mkdir(newtree, 0o777)
except os.error as msg:
except OSError as msg:
print(newtree + ': cannot mkdir:', msg)
return 1
linkname = os.path.join(newtree, link)
try:
os.symlink(os.path.join(os.pardir, oldtree), linkname)
except os.error as msg:
except OSError as msg:
if not link_may_fail:
print(linkname + ': cannot symlink:', msg)
return 1
@ -51,7 +51,7 @@ def linknames(old, new, link):
if debug: print('linknames', (old, new, link))
try:
names = os.listdir(old)
except os.error as msg:
except OSError as msg:
print(old + ': warning: cannot listdir:', msg)
return
for name in names: