diff --git a/Variable/ADD_VARIABLE/Python.html b/Variable/ADD_VARIABLE/Python.html
index 5bea31c..bb9adf7 100644
--- a/Variable/ADD_VARIABLE/Python.html
+++ b/Variable/ADD_VARIABLE/Python.html
@@ -508,9 +508,9 @@
var exec = require('child_process').exec;
var portablePythonPath = 'python-3.10.0\\App\\Python\\';
if (fs.existsSync(portablePythonPath + 'python.exe'))
- var res = exec(Prefix + portablePythonPath + 'python '+filePath, {encoding: 'arraybuffer'}); // Portable Python Environment
+ var res = exec(Prefix + portablePythonPath + 'python ' + filePath, {encoding: 'arraybuffer'}); // Portable Python Environment
else
- var res = exec(Prefix + 'py '+filePath, {encoding: 'arraybuffer'}); // Install Python Environment
+ var res = exec(Prefix + 'py ' + filePath, {encoding: 'arraybuffer'}); // Install Python Environment
var iconv = require('iconv-lite');
var message = "";