Skip to content

Commit

Permalink
- remove superfolous newline in explicit task display
Browse files Browse the repository at this point in the history
  • Loading branch information
polymonster committed Jul 13, 2024
1 parent cd80df1 commit 77e32fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pmbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ def pmbuild_profile_help(config, build_order):
explicit_tasks = []
for key in config:
if key not in build_order and key not in non_profiles:
explicit_tasks.append(" " * 8 + key + "\n")
explicit_tasks.append(" " * 8 + key)

if len(explicit_tasks) > 0:
print("")
Expand Down

0 comments on commit 77e32fb

Please sign in to comment.