From 77e32fb45563451554faa7531c80068a08e75d3e Mon Sep 17 00:00:00 2001 From: polymonster Date: Sat, 13 Jul 2024 10:50:11 +0100 Subject: [PATCH] - remove superfolous newline in explicit task display --- scripts/pmbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pmbuild.py b/scripts/pmbuild.py index e39436b..cd1781b 100644 --- a/scripts/pmbuild.py +++ b/scripts/pmbuild.py @@ -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("")