hupilot-shell-host 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -303,6 +303,7 @@ function execPython(code, timeoutMs) {
303
303
  timeout: timeoutMs,
304
304
  maxBuffer: MAX_OUTPUT_BYTES,
305
305
  windowsHide: true,
306
+ env: { ...process.env, PYTHONIOENCODING: 'utf-8' },
306
307
  });
307
308
  rmSync(tmpDir, { recursive: true, force: true });
308
309
  resolve({ exitCode: 0, output: output || '(no output)' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hupilot-shell-host",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Native Messaging host for Hupilot - local command execution and file access",
5
5
  "type": "module",
6
6
  "private": false,