Skip to content

Commit

Permalink
Release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielholanda committed Jan 7, 2024
1 parent a7e86ae commit 2d2d8fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ None

### Developer Breaking Changes

None
- `build.Status.COMPLETED_BUILD` is now called `build.Status.COMPLETED_BUILD`
- `COMPLETED_BUILD_STAGES` column in the report was removed.

# Version 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion src/turnkeyml/build/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def launch(self, state: build.State) -> build.State:
# Advance the cursor below the monitor so
# we can print an error message
stage_depth_in_sequence = self.get_depth() - self.get_names().index(
stage.unique_name
stage.unique_name # pylint: disable=undefined-loop-variable
)
stdout_lines_to_advance = stage_depth_in_sequence - 2
cursor_down = "\n" * stdout_lines_to_advance
Expand Down

0 comments on commit 2d2d8fa

Please sign in to comment.