diff --git a/src/pyodide.js b/src/pyodide.js index 25ce8e7e8..2f147ee86 100644 --- a/src/pyodide.js +++ b/src/pyodide.js @@ -10,7 +10,8 @@ var languagePluginLoader = new Promise((resolve, reject) => { if (wasmXHR.status === 200 || wasmXHR.status === 0) { Module.wasmBinary = wasmXHR.response; } else { - alert(`Couldn't download the pyodide.asm.wasm binary. Response was ${wasmXHR.status}`); + console.warn( + `Couldn't download the pyodide.asm.wasm binary. Response was ${wasmXHR.status}`); reject(); }