Add missing variable name

This commit is contained in:
David Dworken 2022-05-24 00:14:50 -07:00
parent 92275ded79
commit d851fd8489

View File

@ -37,7 +37,7 @@ def notAscii(fn):
if "ASCII text" in out:
raise Exception(f"fn={fn} is of type {out}")
def waitUntilPublished(url) -> None:
def waitUntilPublished(url, output) -> None:
startTime = time.time()
while True:
r = requests.get(url, headers={'authorization': f'bearer {os.environ["GITHUB_TOKEN"]}'})