mirror of https://github.com/PrimeDecomp/prime.git
Fix api_key reference in upload-progress.py
This commit is contained in:
parent
37d107694c
commit
bf3c6af2a0
|
@ -52,7 +52,7 @@ if __name__ == '__main__':
|
||||||
print("Publishing entries to", url)
|
print("Publishing entries to", url)
|
||||||
pprint(entries)
|
pprint(entries)
|
||||||
data = {
|
data = {
|
||||||
"api_key": args.api_key,
|
"api_key": api_key,
|
||||||
"entries": entries,
|
"entries": entries,
|
||||||
}
|
}
|
||||||
r = requests.post(url, json=data)
|
r = requests.post(url, json=data)
|
||||||
|
|
Loading…
Reference in New Issue