diff options
author | keremh <hallackerem@gmail.com> | 2020-04-24 12:30:28 +0300 |
---|---|---|
committer | keremh <hallackerem@gmail.com> | 2020-04-24 14:31:13 +0300 |
commit | ddf0191ea43d763c784dcb5f7ab937d8ef1ae0b0 (patch) | |
tree | a18617e807f9a9b2705ba6af46dd9006d5dffef0 /numpy/lib/index_tricks.py | |
parent | 6d6df47fefdc503fbcffd8cb14a5daaa956ef220 (diff) | |
download | numpy-ddf0191ea43d763c784dcb5f7ab937d8ef1ae0b0.tar.gz |
ENH: Fix exception causes in four .py files
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index b4118814d..538b32ea2 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -368,8 +368,8 @@ class AxisConcatenator: if len(vec) == 3: trans1d = int(vec[2]) continue - except Exception: - raise ValueError("unknown special directive") + except Exception as e: + raise ValueError("unknown special directive {!r}".format(item)) from e try: axis = int(item) continue |