Fix a typo in fetch-download-metadata.py (#8515)

Fix this typo:

98523e2014/crates/uv-python/fetch-download-metadata.py (L399)

and removed an empty line in the `downloads.inc.mustache" template.
This commit is contained in:
Jo 2024-10-24 20:33:14 +08:00 committed by GitHub
parent b6883ed7fb
commit 41462e5987
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 755 deletions

View file

@ -396,7 +396,7 @@ class CPythonFinder(Finder):
# Prefer optimized builds
return -1 * sum(
(
"lgo" in build_options,
"lto" in build_options,
"pgo" in build_options,
)
)
@ -612,6 +612,7 @@ def main() -> None:
)
# Silence httpx logging
logging.getLogger("httpx").setLevel(logging.WARNING)
logging.getLogger("httpcore").setLevel(logging.WARNING)
asyncio.run(find())