From f25ed8bbdf810e1cb24c81b1d6b6c15c16fec1d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ga=C5=88o?= Date: Tue, 27 Jul 2021 09:49:57 +0200 Subject: [PATCH] Tools: Fixed typo in idf_tools.py --- tools/idf_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index 433695a09e..b1bf848aed 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -987,7 +987,7 @@ def get_python_env_path(): # type: () -> Tuple[str, str, str] # OSError should cover FileNotFoundError and WindowsError warn('Git was not found') except subprocess.CalledProcessError as e: - warn('Git describe was unsuccessul: {}'.format(e.output)) + warn('Git describe was unsuccessful: {}'.format(e.output)) match = re.match(r'^v([0-9]+\.[0-9]+).*', idf_version_str) if match: idf_version = match.group(1) # type: Optional[str]