diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:54:47 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:54:47 (GMT) |
commit | 1f415cf2c2b5f3eec5489ec1276c0629b32b28c0 (patch) | |
tree | 08c28b5c398c0e2071c7c5e883e5d08c5fc2b5df /Lib/pkgutil.py | |
parent | 08d02724df9c99fb66be506755986e199b8781d3 (diff) | |
parent | 7bd61cbc030663ac688364260d2142d09678b2a3 (diff) | |
download | cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.zip cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.tar.gz cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.tar.bz2 |
replace threw with raised (#16714)
Diffstat (limited to 'Lib/pkgutil.py')
-rw-r--r-- | Lib/pkgutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py index 2c8a31b..a5de04d 100644 --- a/Lib/pkgutil.py +++ b/Lib/pkgutil.py @@ -505,7 +505,7 @@ def find_loader(fullname): except (ImportError, AttributeError, TypeError, ValueError) as ex: # This hack fixes an impedance mismatch between pkgutil and # importlib, where the latter raises other errors for cases where - # pkgutil previously threw ImportError + # pkgutil previously raised ImportError msg = "Error while finding loader for {!r} ({}: {})" raise ImportError(msg.format(fullname, type(ex), ex)) from ex |