Skip to content

Commit

Permalink
fix: library name missing in error message
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Simpson <[email protected]>
  • Loading branch information
Rob Simpson authored and Rob Simpson committed Aug 25, 2023
1 parent b3a97bc commit 6521b45
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 6521b45

Please sign in to comment.