From a57c4da1aee365b4cae2f7b0de1477cd4aebc5c2 Mon Sep 17 00:00:00 2001 From: Muffin Date: Wed, 3 Jan 2024 22:58:34 -0600 Subject: [PATCH] Fix another eslint error --- universal-python.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/universal-python.js b/universal-python.js index 00cd7ad52f..6ea5cd99e8 100644 --- a/universal-python.js +++ b/universal-python.js @@ -24,7 +24,7 @@ function run(command, args) { // Microsoft Store install shim exits with code 9009 if (process.platform === 'win32' && code === 9009) { // eslint-disable-next-line max-len - console.log('universal-python: Attempted to start python, but got the Microsoft Store installation shim. Install python from the Microsoft Store or python.org. (code 9009)') + console.log('universal-python: Attempted to start python, but got the Microsoft Store installation shim. Install python from the Microsoft Store or python.org. (code 9009)'); } else if (code === 0) { console.log('universal-python: Success'); } else {