Skip to content

Commit 3302352

Browse files
committed
fix: ARM
1 parent 6dd32ec commit 3302352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c2pa/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_platform_identifier(cpu_arch: Optional[CPUArchitecture] = None) -> str:
6262
elif system == "windows":
6363
return "x86_64-pc-windows-msvc"
6464
elif system == "linux":
65-
print("## System is Linux, arch is: ", _get_architecture()())
65+
print("## System is Linux, arch is: ", _get_architecture())
6666
if _get_architecture() in ['arm64', 'aarch64']:
6767
return "aarch64-unknown-linux-gnu"
6868
return "x86_64-unknown-linux-gnu"

0 commit comments

Comments
 (0)