Fix api_key reference in upload-progress.py

Former-commit-id: bf3c6af2a0
This commit is contained in:
Luke Street 2022-11-25 23:40:34 -05:00
parent 6af151fd3b
commit a59060f699
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ if __name__ == '__main__':
print("Publishing entries to", url)
pprint(entries)
data = {
"api_key": args.api_key,
"api_key": api_key,
"entries": entries,
}
r = requests.post(url, json=data)