Fixed typo in garbage collector
This commit is contained in:
parent
23f4e22953
commit
af7a391ad2
|
|
@ -16,7 +16,7 @@ def erase(name):
|
||||||
url = f'https://api.github.com/orgs/{ORG}/packages/container/{PKG}/versions/{name}'
|
url = f'https://api.github.com/orgs/{ORG}/packages/container/{PKG}/versions/{name}'
|
||||||
r = requests.delete(url, timeout=20, allow_redirects=True, headers=HEADER)
|
r = requests.delete(url, timeout=20, allow_redirects=True, headers=HEADER)
|
||||||
if r.status_code != 204:
|
if r.status_code != 204:
|
||||||
print(f'Error: {r.status_code} ****'
|
print(f'Error: {r.status_code} ****')
|
||||||
|
|
||||||
|
|
||||||
deleted = 0
|
deleted = 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue