We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb87fc commit d0dfe4cCopy full SHA for d0dfe4c
scripts/update_releases.py
@@ -25,10 +25,11 @@ def fetch_release_details():
25
for line in file:
26
repo, url = line.strip().split()
27
url = url.strip('"')
28
+ repo = repo.strip('"')
29
response = requests.get(url)
30
releases = response.json()
- repo_data = requests.get(f"https://api.github.com/repos/OpenKNX/{repo.strip('\"')}").json()
31
- releases_data[repo.strip('"')] = {
+ repo_data = requests.get(f"https://api.github.com/repos/OpenKNX/{repo}").json()
32
+ releases_data[repo] = {
33
"repo_url": repo_data.get("html_url"),
34
"isDeprecated": repo_data.get("archived"),
35
"releases": [
0 commit comments