Skip to content

Commit

Permalink
Merge pull request #36 from Ennovate-com/fix/lib-name-missing
Browse files Browse the repository at this point in the history
Fix Issue #35 Library name missing from error message
  • Loading branch information
andrewwhitehead authored Sep 7, 2023
2 parents 6ee55f8 + 1bc5914 commit a7b370b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/python/indy_credx/bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def _load_library(lib_name: str) -> CDLL:
lib_path = find_library(lib_name)
if not lib_path:
raise CredxError(
CredxErrorCode.WRAPPER, f"Library not found in path: {lib_path}"
CredxErrorCode.WRAPPER, f"Library not found in path: {lib_name}"
)
try:
return CDLL(lib_path)
Expand Down

0 comments on commit a7b370b

Please sign in to comment.