fix(tools/idf_tools.py): Improve the warning message about the environment

pull/13950/merge
Roland Dobai 2024-06-13 12:29:55 +02:00 zatwierdzone przez Roland Dobai
rodzic 771ae77c9b
commit c50c61e0c7
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -1794,7 +1794,8 @@ def check_python_venv_compatibility(idf_python_env_path: str, idf_version: str)
raise SystemExit(1)
except OSError as e:
# perhaps the environment was generated before the support for VENV_VER_FILE was added
warn(f'Error while accessing the ESP-IDF version file in the Python environment: {e}')
warn(f'The following issue occurred while accessing the ESP-IDF version file in the Python environment: {e}. '
'(Diagnostic information. It can be ignored.)')
def action_export(args): # type: ignore
@ -2250,7 +2251,8 @@ def action_install_python_env(args): # type: ignore
with open(os.path.join(idf_python_env_path, VENV_VER_FILE), 'w') as f:
f.write(idf_version)
except OSError as e:
warn(f'Error while generating the ESP-IDF version file in the Python environment: {e}')
warn(f'The following issue occurred while generating the ESP-IDF version file in the Python environment: {e}. '
'(Diagnostic information. It can be ignored.)')
else:
# The embeddable Python for Windows doesn't have the built-in venv module