Fixed python path in settings

This commit is contained in:
Sven Heidemann 2022-12-20 14:29:43 +01:00
parent 742ba8314a
commit 889f51f5c5

View File

@ -130,7 +130,7 @@ class ProjectSettings(ConfigurationModelABC):
path = sys.executable
else:
if not path.endswith('bin/python'):
path = os.path.join('bin/python')
path = os.path.join(path, 'bin/python')
else:
path = sys.executable