diff mbox series

[1/2] arm/lib/fvp: remove redundant trailing commas

Message ID 20230524140823.3624031-1-ross.burton@arm.com
State New
Headers show
Series [1/2] arm/lib/fvp: remove redundant trailing commas | expand

Commit Message

Ross Burton May 24, 2023, 2:08 p.m. UTC
From: Ross Burton <ross.burton@arm.com>

These were left behind in a refactor.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta-arm/lib/fvp/terminal.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Jon Mason May 25, 2023, 12:51 a.m. UTC | #1
On Wed, 24 May 2023 15:08:22 +0100, ross.burton@arm.com wrote:
> These were left behind in a refactor.

Applied, thanks!

[1/2] arm/lib/fvp: remove redundant trailing commas
      commit: 6fc35b96138454f2aadd38eaa41a283c756967e6
[2/2] arm-bsp/fvp-base: remove u-boot version pinning
      commit: 87831bf55907fe7f80d0767cd016e4cff3c8b55c

Best regards,
diff mbox series

Patch

diff --git a/meta-arm/lib/fvp/terminal.py b/meta-arm/lib/fvp/terminal.py
index 6f408153..243d4fb1 100644
--- a/meta-arm/lib/fvp/terminal.py
+++ b/meta-arm/lib/fvp/terminal.py
@@ -53,7 +53,7 @@  class Terminals:
 terminals = Terminals()
 # TODO: option to switch between telnet and netcat
 connect_command = "telnet localhost %port"
-terminals.add_terminal(2, "tmux", f"tmux new-window -n \"%title\" \"{connect_command}\""),
-terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"%title\" --command \"{connect_command}\""),
-terminals.add_terminal(1, "xterm", f"xterm -title \"%title\" -e {connect_command}"),
+terminals.add_terminal(2, "tmux", f"tmux new-window -n \"%title\" \"{connect_command}\"")
+terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"%title\" --command \"{connect_command}\"")
+terminals.add_terminal(1, "xterm", f"xterm -title \"%title\" -e {connect_command}")
 terminals.add_terminal(0, "none", None)