From 0fb1c80a282058ae2b33ea6e9e896dd38af0dd74 Mon Sep 17 00:00:00 2001 From: Marcus Date: Tue, 30 Oct 2018 19:56:29 -0400 Subject: [PATCH] idle works --- bin/python.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/python.js b/bin/python.js index cb39dd6..6f162bf 100644 --- a/bin/python.js +++ b/bin/python.js @@ -3,7 +3,7 @@ const path = require('path'); let pythonPath = path.resolve(__dirname, '..', 'Python', 'python.exe'); -console.log(process.argv); +// console.log(process.argv); -require('child_process').spawn(pythonPath, process.argv.slice(1), {stdio: 'inherit'}); +require('child_process').spawn(pythonPath, [], {stdio: 'inherit'});