mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Catch DistutilsFileError in addition to DistutilsExecError in 'setup()'.
This commit is contained in:
parent
b361233c76
commit
b2e2c29295
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ def setup (**attrs):
|
||||||
"error: %s: %s" % (exc.filename, exc.strerror)
|
"error: %s: %s" % (exc.filename, exc.strerror)
|
||||||
else:
|
else:
|
||||||
raise SystemExit, str (exc)
|
raise SystemExit, str (exc)
|
||||||
except DistutilsExecError, msg:
|
except (DistutilsExecError, DistutilsFileError), msg:
|
||||||
raise SystemExit, "error: " + str (msg)
|
raise SystemExit, "error: " + str (msg)
|
||||||
|
|
||||||
# setup ()
|
# setup ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue