Skip to content

Commit 660e159

Browse files
committed
fix: Universal pipeline
1 parent 4df0620 commit 660e159

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/c2pa/lib.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,7 @@ def dynamically_load_library(
255255
# Default path (no library name provided in the environment)
256256
c2pa_lib = _load_single_library(c2pa_lib_name, possible_paths)
257257
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")
258+
logger.error(f"Could not find {c2pa_lib_name} in any of the search paths: {[str(p) for p in possible_paths]}")
259+
raise RuntimeError(f"Could not find {c2pa_lib_name} in any of the search paths")
264260

265261
return c2pa_lib

0 commit comments

Comments
 (0)