From 6fe2de73b222e50b87fca68263f3676bcba052b3 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 12 Mar 2026 05:20:32 -0400 Subject: [PATCH] [UPD] script execute with more space for command display --- script/execute/execute.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/execute/execute.py b/script/execute/execute.py index 887a8e9..62ddcb8 100644 --- a/script/execute/execute.py +++ b/script/execute/execute.py @@ -115,7 +115,7 @@ class Execute: command = self.cmd_source_default % command if not quiet: - print("🏠 ⬇ Execute command :") + print("🏠 ⬇ Execute command :\n") print(command) output_lines = [] @@ -172,10 +172,10 @@ class Execute: duration_delta = datetime.timedelta(seconds=duration_sec) human_time = humanize.precisedelta(duration_delta) if not quiet: - print(f"🏠 ⬆ Executed ({human_time}) :") + print(f"🏠 ⬆ Executed ({human_time}) :\n") else: if not quiet: - print(f"🏠 ⬆ Executed ({duration_sec:.2f} sec.) :") + print(f"🏠 ⬆ Executed ({duration_sec:.2f} sec.) :\n") if not quiet: print(command) print()