From 4dd8099ce91a3f9a9b6abbb698bfb3a084985d7c Mon Sep 17 00:00:00 2001 From: donBarbos Date: Fri, 12 Sep 2025 21:21:47 +0400 Subject: [PATCH] Fix typo in name "Linux" --- scripts/stubsabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stubsabot.py b/scripts/stubsabot.py index 03db0a667fe8..60b905fbfb2b 100755 --- a/scripts/stubsabot.py +++ b/scripts/stubsabot.py @@ -204,7 +204,7 @@ async def with_extracted_archive( with zipfile.ZipFile(body) as zf: return handler(zf) elif packagetype == "sdist": - # sdist defaults to `.tar.gz` on Lunix and to `.zip` on Windows: + # sdist defaults to `.tar.gz` on Linux and to `.zip` on Windows: # https://docs.python.org/3.11/distutils/sourcedist.html if release_to_download.filename.endswith(".tar.gz"): with tarfile.open(fileobj=body, mode="r:gz") as zf: