We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2fe67e commit 5cc4212Copy full SHA for 5cc4212
relenv/pyversions.py
@@ -870,7 +870,9 @@ def update_dependency_versions(
870
dependencies["krb5"] = {}
871
if latest not in dependencies["krb5"]:
872
major_minor = ".".join(latest.split(".")[:2])
873
- url = f"https://kerberos.org/dist/krb5/{major_minor}/krb5-{latest}.tar.gz"
+ url = (
874
+ f"https://kerberos.org/dist/krb5/{major_minor}/krb5-{latest}.tar.gz"
875
+ )
876
print(f"Downloading {url}...")
877
try:
878
download_path = download_url(url, cwd)
0 commit comments