Skip to content

Commit

Permalink
Bug fix for #1407. (#1435)
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink authored Sep 5, 2020
1 parent 7f60b4b commit 0b9fbc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ async def _parse_source_responses(self, responses: SourceResponses) -> SourceMea
completed = sprint_points["completed"]["text"]
entities.append(
Entity(
key=sprint["id"], name=sprint["name"], goal=sprint["goal"], points_completed=completed,
key=sprint["id"], name=sprint["name"], goal=sprint.get("goal") or "", points_completed=completed,
points_committed=committed,
url=f"{api_url}/secure/RapidBoard.jspa?rapidView={board_id}&view=reporting&"
f"chart=sprintRetrospective&sprint={sprint['id']}"))
Expand Down

0 comments on commit 0b9fbc3

Please sign in to comment.