diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2021-10-10 20:33:48 +0000 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2021-10-10 20:33:48 +0000 |
commit | 72ad29efeb4709572e789a57aa94d00a0eaeb97d (patch) | |
tree | 7555a12d7302b59fe0b226a0fd0f18964bfd50fb /src/NeoRuntimeManager | |
parent | 5cf342cd4400d4f555732f80bfdf3639965c4f88 (diff) | |
download | Luxcena-Neo-72ad29efeb4709572e789a57aa94d00a0eaeb97d.tar.gz Luxcena-Neo-72ad29efeb4709572e789a57aa94d00a0eaeb97d.zip |
:construction: Make python 3.5 compatible and fix some weird bugs
Diffstat (limited to 'src/NeoRuntimeManager')
-rw-r--r-- | src/NeoRuntimeManager/RuntimeProcess.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/NeoRuntimeManager/RuntimeProcess.js b/src/NeoRuntimeManager/RuntimeProcess.js index 24614fa..c5c4749 100644 --- a/src/NeoRuntimeManager/RuntimeProcess.js +++ b/src/NeoRuntimeManager/RuntimeProcess.js @@ -28,6 +28,7 @@ class RuntimeProcess { this.isRunning = true; this.proc = spawn.spawn( `${__appdir}/NeoRuntime/Runtime/venv/bin/python`, + //"python", [ "-u", // This makes us able to get real-time output `${__appdir}/NeoRuntime/Runtime/neo_runtime.py`, |