Skip to content

Commit 92efcde

Browse files
authored
Fix create-vendor-zip (#5859)
It should say `None` instead of `"None"` for the abi
1 parent bb12de3 commit 92efcde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyodide/create_vendor_zip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def main() -> int:
161161
i2 = " " * 16
162162
print(i1 + "{")
163163
print(i2 + f'"name": "{"-".join(args.package_name)}",')
164-
print(i2 + f'"abi": "{abi}",')
164+
print(i2 + f'"abi": {abi!r},')
165165
print(i2 + f'"sha256": "{hexdigest(zip_path)}",')
166166
print(i1 + "},")
167167
print()

0 commit comments

Comments
 (0)