Skip to content

Commit

Permalink
show complete exception traceback
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Jul 24, 2024
1 parent f80dde1 commit 42094c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_xmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import io
import logging
import os
import traceback
from contextlib import contextmanager
from xml.etree import ElementTree

Expand All @@ -35,6 +36,7 @@ def import_backend(name):
try:
backend = importlib.import_module(mod_name)
except ImportError as _import_error:
traceback.print_exc()
import_error = _import_error

class Backend:
Expand Down

0 comments on commit 42094c9

Please sign in to comment.