فهرست منبع

Tools: Fixed typo in idf_tools.py

Martin Gaňo 4 سال پیش
والد
کامیت
f25ed8bbdf
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tools/idf_tools.py

+ 1 - 1
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]