summaryrefslogtreecommitdiffstats
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-24 17:58:48 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-24 17:58:48 (GMT)
commit8b33dd8e547790af86e9fc85ea6c315ead276b6e (patch)
tree4da041d085b8c0226f691429036835167e3874ac /Lib/cgi.py
parent6a7a49c6318afe8a54fe6dda2dd321af2a275295 (diff)
downloadcpython-8b33dd8e547790af86e9fc85ea6c315ead276b6e.zip
cpython-8b33dd8e547790af86e9fc85ea6c315ead276b6e.tar.gz
cpython-8b33dd8e547790af86e9fc85ea6c315ead276b6e.tar.bz2
Use OESeeror instead of os.error (#16720)
Patch by Serhiy Storchaka.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 4222ef2..8cc48bd 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -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()