Skip to content

Commit

Permalink
utils: fix output format for un-built packages
Browse files Browse the repository at this point in the history
  • Loading branch information
liushuyu committed Dec 17, 2023
1 parent 19f938e commit 18b491a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion acbs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ def print_build_timings(timings: List[Tuple[str, float]], failed_packages: List[
print(format_column(formatted_timings))
if len(failed_packages) > 1:
print("Package(s) not built due to previous build failure:")
print(formatted_failed_packages[1:])
print('\n'.join(formatted_failed_packages[1:]))
print('')


def is_spec_legacy(spec: str) -> bool:
Expand Down

0 comments on commit 18b491a

Please sign in to comment.