Skip to content

Commit

Permalink
Update release_calendar.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniloMilenkovic authored Dec 12, 2024
1 parent be766b7 commit 2e342d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release_calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def find_branch():

for release in json_data['NECTO DAILY UPDATE']["events"]:
date = release["start_dt"]
if "2025-02-28" == date:
if "2025-04-05" == date:
return release["branch"]

return "NO_BRANCH_IN_SPREADSHEET"
Expand All @@ -131,7 +131,7 @@ def find_reference_manual():

for release in json_data['NECTO DAILY UPDATE']["events"]:
date = release["start_dt"]
if "2025-02-28" == date:
if "2025-04-05" == date:
return json.loads(release["additional"].replace('""','"').replace('"{','{').replace('}"','}'))["pdf_link"].replace('.pdf', '')

return "none"
Expand Down

0 comments on commit 2e342d0

Please sign in to comment.