Update text formatting in generate_cgmanifest.py (#21489)

The only place where I manually fixed I forgot a format string
This commit is contained in:
Justin Chu 2024-07-26 08:46:54 -07:00 committed by GitHub
parent 278f0f5cd2
commit bbbaef3fa6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,7 @@ def add_github_dep(name, parsed_url):
return
# Make a REST call to convert to tag to a git commit
url = f"https://api.github.com/repos/{org_name}/{repo_name}/git/refs/tags/{tag}"
print("requesting {url} ...")
print(f"requesting {url} ...")
res = requests.get(url, auth=(args.username, args.token))
response_json = res.json()
tag_object = response_json["object"]