Skip to content

Commit fb1c9eb

Browse files
committed
build-all - fix missing f-string
1 parent a61d5a1 commit fb1c9eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nix/build-all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def get_pyodide_build_version() -> "tuple[int, ...]":
253253
# https://github.com/pyodide/pyodide-build/issues/251
254254
side_module_cxx_flags = os.environ.get("SIDE_MODULE_CXXFLAGS", "")
255255
if side_module_cxx_flags.strip():
256-
print("SIDE_MODULE_CXXFLAGS are already passed from pyodide build ('{side_module_cxx_flags}').")
256+
print(f"SIDE_MODULE_CXXFLAGS are already passed from pyodide build ('{side_module_cxx_flags}').")
257257
print("Maybe it's time to stop overriding them in the script?")
258258

259259
os.environ["SIDE_MODULE_CXXFLAGS"] = os.environ["SIDE_MODULE_CFLAGS"]

0 commit comments

Comments
 (0)