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

@ -950,7 +950,7 @@ def print_directory():
try:
pwd = os.getcwd()
except OSError as msg:
print("os.error:", html.escape(str(msg)))
print("OSError:", html.escape(str(msg)))
else:
print(html.escape(pwd))
print()