We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8687af9 commit 732d456Copy full SHA for 732d456
src/c2pa/lib.py
@@ -251,7 +251,6 @@ def dynamically_load_library(
251
c2pa_lib = _load_single_library(c2pa_lib_name, possible_paths)
252
if not c2pa_lib:
253
logger.error(f"Could not find {c2pa_lib_name} in any of the search paths: {[str(p) for p in possible_paths]}")
254
- raise RuntimeError(
255
- f"Could not find {c2pa_lib_name} in any of the search paths")
+ raise RuntimeError(f"Could not find {c2pa_lib_name} in any of the search paths")
256
257
return c2pa_lib
0 commit comments