diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-06-27 18:48:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-27 18:48:03 -0400 |
| commit | f0a112ef5d04fc17a49ad8e2d74e5e23f3c40dd5 (patch) | |
| tree | 81ca7ee2cf4f8b47316c916bc9b53e47c53cda2b /tests/import/mpy_invalid.py | |
| parent | 72ea216dceff146ff654e6652e5535064dfe69ee (diff) | |
| parent | 0cce7fcaa3295d18f4fb7e10821ab692d5b2f4d7 (diff) | |
Merge pull request #1975 from tannewt/merge_in_4024.1.0-beta.1
Merge in 4.0.2
Diffstat (limited to 'tests/import/mpy_invalid.py')
| -rw-r--r-- | tests/import/mpy_invalid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/import/mpy_invalid.py b/tests/import/mpy_invalid.py index 6a4e116e7..b9dd99a44 100644 --- a/tests/import/mpy_invalid.py +++ b/tests/import/mpy_invalid.py @@ -59,8 +59,8 @@ for i in range(len(user_files)): mod = 'mod%u' % i try: __import__(mod) - except ValueError as er: - print(mod, 'ValueError', er) + except Exception as e: + print(mod, type(e).__name__, e) # unmount and undo path addition uos.umount('/userfs') |
