From 4c94b61efc4ac824f0fc2c4977fc3a03be84e18a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sun, 26 Oct 2025 16:03:52 +0100 Subject: [PATCH] fix install on older systems --- npm_install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/npm_install.py b/npm_install.py index ab530e6..33639e0 100644 --- a/npm_install.py +++ b/npm_install.py @@ -278,10 +278,10 @@ def ensure_minimum_nodejs(min_version=MIN_NODEJS_VERSION): node_ver = run_out(["node", "--version"], check=False).strip() if shutil.which("npm"): npm_ver = run_out(["npm", "--version"], check=False).strip() - printf(f"Node.js: {node_ver}") - printf(f" npm: {npm_ver}") + print(f"Node.js: {node_ver}") + print(f" npm: {npm_ver}") else: - printf(f"Node.js: {node_ver}") + print(f"Node.js: {node_ver}") return True