Skip to content
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.

Commit

Permalink
tweak: ldgr error message on ldgr import
Browse files Browse the repository at this point in the history
  • Loading branch information
Moustikitos committed Jun 6, 2022
1 parent 5710986 commit be60a21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dposlib/ark/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
try:
from dposlib.ark import ldgr
LEDGERBLUE = True
except ImportError:
except ImportError as error:
sys.stdout.write("error occured importing dposlib.ark.ldgr...\n")
sys.stdout.write("%r\n" % error)
LEDGERBLUE = False

deltas = deltas
Expand Down

0 comments on commit be60a21

Please sign in to comment.