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 4df0620 commit 660e159Copy full SHA for 660e159
src/c2pa/lib.py
@@ -255,11 +255,7 @@ def dynamically_load_library(
255
# Default path (no library name provided in the environment)
256
c2pa_lib = _load_single_library(c2pa_lib_name, possible_paths)
257
if not c2pa_lib:
258
- logger.error(
259
- f"Could not find {c2pa_lib_name} in any of the search paths: {
260
- [
261
- str(p) for p in possible_paths]}")
262
- raise RuntimeError(
263
- f"Could not find {c2pa_lib_name} in any of the search paths")
+ logger.error(f"Could not find {c2pa_lib_name} in any of the search paths: {[str(p) for p in possible_paths]}")
+ raise RuntimeError(f"Could not find {c2pa_lib_name} in any of the search paths")
264
265
return c2pa_lib
0 commit comments