summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/build_scripts.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:47:37 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:47:37 +0200
commit45d1bc39881473d6fec76c4627070ac0b89d4b4c (patch)
treeffa31c1c94f04716c23c5a877e085151abfbcf8b /Lib/distutils/command/build_scripts.py
parent5d30ade43e4a2d711483f3326b7f40865ccbc71e (diff)
downloadcpython-45d1bc39881473d6fec76c4627070ac0b89d4b4c.tar.gz
Replace IOError with OSError (#16715)
Diffstat (limited to 'Lib/distutils/command/build_scripts.py')
-rw-r--r--Lib/distutils/command/build_scripts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index 4b5b22ec20..90a8380a04 100644
--- a/Lib/distutils/command/build_scripts.py
+++ b/Lib/distutils/command/build_scripts.py
@@ -74,7 +74,7 @@ class build_scripts(Command):
# script.
try:
f = open(script, "rb")
- except IOError:
+ except OSError:
if not self.dry_run:
raise
f = None