Typo fixes in install_linux_packages.py

- "withing" -> "within"

Pull Request: https://projects.blender.org/blender/blender/pulls/147690
This commit is contained in:
Dan Oak
2025-10-09 12:21:41 +02:00
committed by Bastien Montagne
parent 3aed0aa7ba
commit 454c544749

View File

@@ -1254,10 +1254,11 @@ class PackageInstaller:
if package.is_mandatory:
self.settings.logger.critical(
f"\tFailed to find a matching mandatory {package_distro_name} "
f"(withing versions range [{package.version_min}, {package.version_mex}[).")
f"(within versions range [{package.version_min}, {package.version_mex}[).")
exit(1)
self.settings.logger.warning(f"\tFailed to find a matching {package_distro_name} "
f"(withing versions range [{package.version_min}, {package.version_mex}[).")
self.settings.logger.warning(
f"\tFailed to find a matching {package_distro_name} "
f"(within versions range [{package.version_min}, {package.version_mex}[).")
return False
if self._install_command is ...: