From 1316418088e0be04382c8b5e9d4416ee08c08b34 Mon Sep 17 00:00:00 2001 From: Semyon Moroz Date: Fri, 12 Sep 2025 21:25:08 +0400 Subject: [PATCH] [stubsabot] Fix typo in name "Linux" (#14705) --- scripts/stubsabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stubsabot.py b/scripts/stubsabot.py index 03db0a667..60b905fbf 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: