Build 2022.6.0rc2
This commit is contained in:
@@ -15,7 +15,7 @@ __title__ = 'cpl_cli.configuration'
|
||||
__author__ = 'Sven Heidemann'
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright (c) 2020 - 2022 sh-edraft.de'
|
||||
__version__ = '2022.6.0rc1'
|
||||
__version__ = '2022.6.0rc2'
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
@@ -30,4 +30,4 @@ from .workspace_settings import WorkspaceSettings
|
||||
from .workspace_settings_name_enum import WorkspaceSettingsNameEnum
|
||||
|
||||
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
||||
version_info = VersionInfo(major='2022', minor='6', micro='0.rc1')
|
||||
version_info = VersionInfo(major='2022', minor='6', micro='0.rc2')
|
||||
|
||||
@@ -125,7 +125,7 @@ class ProjectSettings(ConfigurationModelABC):
|
||||
if ProjectSettingsNameEnum.python_path.value in settings and sys.platform in settings[ProjectSettingsNameEnum.python_path.value]:
|
||||
path = settings[ProjectSettingsNameEnum.python_path.value][sys.platform]
|
||||
if path == '' or path is None:
|
||||
Error.warn(f'{ProjectSettingsNameEnum.python_path.value} not found')
|
||||
Error.warn(f'{ProjectSettingsNameEnum.python_path.value} not set')
|
||||
path = sys.executable
|
||||
else:
|
||||
path = sys.executable
|
||||
|
||||
Reference in New Issue
Block a user