Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-10-28 03:52:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-28 03:52:15 +0300
commit9dac5456b9b7315c21b51703c67e317f90dbbe13 (patch)
tree45a51f2ad9703602dc2b468b5bd52008a5dded84 /release
parentd28676d89a79e02745ebced89152f25dbfd71285 (diff)
parent04c5471ceefb41c9e49bf7c86f07e9e7b8426bb3 (diff)
Merge branch 'blender-v2.91-release'
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/sys_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/modules/sys_info.py b/release/scripts/modules/sys_info.py
index fc3ffe4dd88..cb80529f0f3 100644
--- a/release/scripts/modules/sys_info.py
+++ b/release/scripts/modules/sys_info.py
@@ -82,10 +82,10 @@ def write_sysinfo(filepath):
output.write("\t%r\n" % p)
output.write(title("Python (External Binary)"))
- output.write("binary path: %s\n" % prepr(bpy.app.binary_path_python))
+ output.write("binary path: %s\n" % prepr(sys.executable))
try:
py_ver = prepr(subprocess.check_output([
- bpy.app.binary_path_python,
+ sys.executable,
"--version",
]).strip())
except Exception as e: